All Tags »
bug
Sorry, but there are no more tags available to filter with.
-
Hi,
If you on the Page_Load event add an overlay using
GoogleMap1.Overlays.Add(new GoogleTrafficOverlay());
and also hook up an event like
GoogleMap1.Click += ClickHandler(GoogleMap1_Click);
When you click on the map, the callback fails (endless progress bar on the map)
If you comment out the add of the overlay then the callback will ...
-
Hi,
If you try to do this reverse geocode
http://maps.google.com/maps/geo?ll= -33.8384827559951%2c151.100463867188 &output=json&key=
You can see that some of the responses do not have the ''AdministrativeArea'' element, or even the ''Country'' element.
This causes an error in your AddressConverter.cs class as you do not check to see if ...