I am using map my India map.I shows a marker on map according to define Latitude and Longitude.But now i have to show multiple marker on map.I have no idea about that please help me out.I gives you single marker plotting code.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://apis.mapmyindia.com/v2.0/mapApi /licKey=4d29cecd1c6f9f97247b82e18b637093&platform=aspx"></script>
<title>MapmyIndia Maps</title>
</head>
<body style="font-family:Verdana,Arial,sans-serif; font-size:12px; line-height:1.2em;">
<div id="MapDiv" style="width: 500px; height: 300px;">
</div>
<script type="text/javascript">
var _X = '76.652826';
var _Y = '10.78716';
var pt = new Point(_X, _Y);
$().ready(function () {
var map = $("#MapDiv");
map.MireoMap();
map.MireoMap("addMarker", HTMLHelper.mapMarker("https://d2t1xqejof9utc.cloudfront.net/screenshots/pics/81591c98d66921ed45c6fbab36601942/medium.png", 100, 100), pt);
})
</script>
</body>
</html>
This code for single map plotting.I want to show multiple markers on map.I provides you some urls for reference
check this above example