Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Helo still now i done 3 projects ,and each project i done google map module...in every project i have common doubt that can we handle/show large amount of data in fraction of seconds in google maps page but it is not possible for me ,so anybody can help me is there any way to handle large of data should display in google map in small fraction of seconds.tell me the best ways, thanks in advance.

this is my sample code
JavaScript
function InitailizeDefaultMap() {
try {
var myOptions = {
center: new google.maps.LatLng(18.0000, 79.5800),
zoom: 11,
mapTypeId: google.maps.MapTypeId.HYBRID,
streetViewControl: false,
zoomControl: true,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.DEFAULT
}
}
mapForCanvas = new google.maps.Map(document.getElementById('divMapCanvas'), myOptions);
}
catch (e) {
throw e;
}
}


What I have tried:

i used javascript to get data from database(c# for codebehind) to show in google map i want any other way to this in fraction of seconds
Posted
Updated 27-Jun-16 22:40pm
v3

1 solution

Hi,

Refers This one to solve your problem.

Map multiple locations and large data sets[^]
 
Share this answer
 
Comments
haisanthosh 29-Jun-16 0:56am    
thanks ravi garu....but here in my page--> live hits are coming so i have to show those live lat and long in my google maps and every time data is increases

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900