I have tried to load markers numerous ways, I have Both Latitude and Longitude for all my locations
One I tried to use Fusion Layers this worked ok but then I ran into an issue when trying to figure out a way of finding the nearest location to the device.
The other I used the cloud database and the tutorial adding multible markers from rest service, The issue I ran into however is that I have close to 600 locations using the google api It throws an over Quota error after showing 50 markers
So I used the example https://getsatisfaction.com/apperyio/...
With the code
code
var coordsArray = data.coordinate;
var marker;
for (var i = 0, j = coordsArray.length; i < j; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng( coordsArray.latitudine, coordsArray.longitudine ),
map: Appery("Map1").gmap
});
}
/code
And Mapping to Markers in the map object
But the markers load slow
(App)
http://appery.io/app/mobile-frame?src...
Any suggestions on how I can speed this up, I tried creating a local variable but it only lets me map a single object to it