| Current Path : /home/zqegovsj/www/us3web.haibo.com.cn/biguo/js/ |
| Current File : /home/zqegovsj/www/us3web.haibo.com.cn/biguo/js/mapmarker.js |
(function($){
$.fn.mapmarker = function(options){
var opts = $.extend({}, $.fn.mapmarker.defaults, options);
return this.each(function() {
// Apply plugin functionality to each element
var map_element = this;
addMapMarker(map_element, opts.zoom, opts.center, opts.markers);
});
};
// Set up default values
var defaultMarkers = {
"markers": []
};
$.fn.mapmarker.defaults = {
}
// Main function code here (ref:google map api v3)
function addMapMarker(map_element, zoom, center, markers){
//console.log($.fn.mapmarker.defaults['center']);
//Set center of the Map
var myOptions = {
zoom: zoom,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(map_element, myOptions);
var geocoder = new google.maps.Geocoder();
var infowindow = null;
var baloon_text = "";
geocoder.geocode( { 'address': center}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
//In this case it creates a marker, but you can get the lat and lng from the location.LatLng
map.setCenter(results[0].geometry.location);
}
else{
console.log("Geocode was not successful for the following reason: " + status);
}
});
//run the marker JSON loop here
$.each(markers.markers, function(i, the_marker){
latitude=the_marker.latitude;
longitude=the_marker.longitude;
icon=the_marker.icon;
var baloon_text=the_marker.baloon_text;
if(latitude!="" && longitude!=""){
var marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(latitude,longitude),
animation: google.maps.Animation.DROP,
icon: icon
});
// Set up markers with info windows
google.maps.event.addListener(marker, 'click', function() {
// Close all open infowindows
if (infowindow) {
infowindow.close();
}
infowindow = new google.maps.InfoWindow({
content: baloon_text
});
infowindow.open(map,marker);
});
}
});
}
})(jQuery);