I'm displaying location on Google map with the following script:
<script type="text/javascript">
$(document).ready(function () {
var markersdetails = {
"Iran": {
"title": "Iran",
"lat": "32.000000",
"lng": "53.000000",
"infodata": "sample 1"
},
"Italy": {
"title": "Italy",
"lat": "41.9000",
"lng": "12.483",
"infodata": "sample 2"
}
}
MapLocation(markersdetails);
});
function MapLocation(objmarkersdetails) {
//This function contains functionality to map location on google map
}
</script>
This is working perfectly. Now I w ...
Go to the complete details ...