Currently, we can accept the Lat/Long coordinate correctly, and save it correctly, but when we go back to the map later - the pin snaps to the nearest road and not to the exact lat/long we entered.
Has anybody encountered this, and if so, how did you get around this?
place = response.Placemark[0];
point = new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);
marker = new GMarker(point);
me.map.addOverlay(marker);
me.map.setCenter(point, zoom);
When we show this, the coordinates snap to the road, not the actual coordinates.
responsethe response to? And how are you "going back to the map later"? The code executed then must be different, or it would behave the same. – Andrew Leach Mar 13 '12 at 23:00