Search results for

Apple Maps Guides

149,557 results found

Post

Replies

Boosts

Views

Activity

Google maps v3 crash
Hello,I've been developing a web app which utilizes the google maps javascript api and the markerwithlabel extension.After a bit of testing I found after having zoomed in on a marker, zooming out using a pinch gesture causes the entire Safari/Chrome tab to crash on an iPad 2 running iOS 8 and 9.Here is the code I used:HTML<div id=maptest/>Javascript$(function () { var map = new google.maps.Map(document.getElementById('maptest'), { zoom: 4, center: new google.maps.LatLng(0, 0), mapTypeId: google.maps.MapTypeId.ROADMAP }); for (var i = 0; i < 10; i++) { var marker = new MarkerWithLabel({ position: new google.maps.LatLng(i, i), map: map, labelContent: A, }); } });Css#maptest { width: 100vw; height: 100vh; }You can check it out in this fiddle:http://jsfiddle.net/mac89/h8w3v7v0/15/The crash seems to only occur when using a label, in this fiddle the crash does not happen:http://jsfiddle.net/mac89/h8w3v7v0/17/Decreasing the size of the map seems to lessen the cha
Topic: Safari & Web SubTopic: General Tags:
2
0
1.9k
Oct ’15
Maps not tracking movement
Can’t see this as a known issue in the release notes. When in driving / walking directions, Maps does not keep pace with the device’s position, causing Maps to lag behind with turn by turn directions. Sometimes up to 30 seconds passes between the location updating. Anyone else experiencing this issue? iPhone X, 64GB, Dev beta 2.
7
0
2.1k
Jun ’18
Reply to MKMapView crash on LandscapeRight
OK, managed to locate the problem (based on some discussions on previous map rotation errors). It was related to a wrong UI constraintSuperview.bottomMargin = mapview.bottom - 6This caused the mapview to get wrong values when rotating to LandscapeRight, and being unable to recover.I fixed it by setting bottom layout guide = mapview bottomI would still call this a bug that should probably be fixed though. Certainly caused me som extra workRegards
Jan ’16
Maps iOS 16.1 crash and bug
Hello everyone, I would like to report problems regarding the maps of iPhone iOS 16.1 - iPhone 12 Pro 256GB. First problem (crash) systematic always: Open Maps app Delete 1 favourites (swipe from right to left) and press delete button. observed: maps crash Second problem (maps remains all black graphics): Open Settings-> Screen and Brightness -> select the white mode Open Maps Observed: Maps remains in black mode graphics. Thanks.
1
0
1.1k
Oct ’22
ARKit with map data?
Hi, I've been asked to estimate a project that would require ARKit, unfortunately I'm new to the technology and need some quick answers as to how it works. The app my customer wants to build would overlay simple graphics at street addresses, as the user pointed their camera at buildings or storefronts. For this to work, I'd need to be able to have the AR view tell me what map locations or street addresses are being seen in the camera view. Is this possible? Thanks, Frank
1
0
858
Oct ’21
Map views without internet?
Is it possible to use a map view in a situation where there is no internet access?The app I'm developing is for use at an event, which means I know in advance where the user will be. I'd like to be able to preload the map data for that area so that it can be available without internet. It's a pretty small area (less than 1 square mile).Thanks,Frank
1
0
4.0k
Aug ’18
Rotate sprite with normal maps
I tried creating a sprite with a normal map; lighting works; however if I rotate the sprite, the lighting doesn't respond.After seeing this; I realize 'duh, my pixels saying +x values still say +x values no matter where I am'So while I understand why it happens, is there anything built into sprite kit to recompute normal maps or the lighting calculation based on sprite rotation, or am I into custom shaders?Thanks,-Michael
4
0
700
Oct ’15