Google Fusion Api And Issues With Displaying All The Data
What I am trying to do is display vineyards in Colorado. It displays the custom icons and they are in the correct places; however, it does not display all the data. Only 11 points
Solution 1:
You are geocoding the addresses, that will run into OVER_QUERY_LIMIT errors (at about 10 or so):
Add an else like this to see them:
if (status == google.maps.GeocoderStatus.OK) {
// .. your code
} else {
alert("geocode failed:"+status);
}
You have the latitude and longitude in the table, use them to display the marker, don't use the geocoder.
Post a Comment for "Google Fusion Api And Issues With Displaying All The Data"