Friday 14 March 2014

jQuery Map Marker Plugin

jQuery Map Marker Plugin makes it easy to put multiple markers on Map using Google Map API V3.

Map Marker is very useful when you have a list of data & you want to show all of them on Map too.


Like most of the jQuery plugins, this plugin is very straight forward to setup.

It has some nice options & uses JSON formatted data for every Locations.


Also make note that you must have to pass the Location values using Lattitude & Longitude co-ordinates of the that Location (due to Google map API limitation).


mapmarker-e1375162824274


Below steps will make more sense of using this plugin.


Step-1 : Include necessary JS files in your <head> tag


<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script><script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>

<script type="text/javascript" src="js/mapmarker.jquery.js"></script>

Step-2 : Create a Map container using divtag & give it an ID in your html body


<div id="map" style="width: 550px; height: 450px; border: 2px solid red;"></div>

Step-3 : Apply the Plugin to the Map element using below code. Put the code before closing </head>tag



<script type="text/javascript">// <![CDATA[
$(document).ready(function(){

//set up markers
var myMarkers = {"markers": [
{"latitude": "31.42866311735861", "longitude":"-98.61328125", "icon": "img/house.png", "baloon_text": 'This is <strong>Texas</strong>'},
{"latitude": "35.101934057246055", "longitude":"-96.6796875", "icon": "img/castle.png", "baloon_text": 'This is <strong>Oklahoma</strong>'},
{"latitude": "38.61687046392973", "longitude":"-98.876953125", "icon": "img/house.png", "baloon_text": 'This is <strong>Kansas</strong>'}
]
};

//set up map options
$("#map").mapmarker({
zoom : 5,
center : 'United States',
markers : myMarkers
});

});
// ]]></script>

 Each locations will include 4 entities.

1. latitude – latitude of the location

2. longitude – longitude of the location

3. icon – a custom icon to display on map as marker (16 x 16 pixels size)

4. baloon_text – a Text to display in a Baloon on map when clicked on that specific Marker. You can also use this text in HTML format. Make sure you use single quotes(‘) only for HTML format baloon text.


Use below link if you want to get latitude & longitude
http://www.findlatitudeandlongitude.com/find-address-from-latitude-and-longitude.php


Additionally, there are 2 more options which you can set on Map.

1. zoom – to set default zoom level of the Map. Increase the value to zoom-in & Decrease the value to zoom-out

2. center – to specify the center location of the Map. Make sure the center location address you enter is spelled properly.

3. markers – this will be simply the Markers variable we created, here it is “myMarkers”


Step-4 : That’s All


Enjoy………………!!


Demo and Download code go to below site


http://www.welancers.com/jquery-map-marker-plugin/



jQuery Map Marker Plugin

No comments:

Post a Comment