Questions tagged [jquery-gmap3]

gmap3 is a jQuery wrapper for google maps API v3. For people who are used to the jQuery way of javascripting, gmap3 provides an easy-to-use interface for google maps API v3.

is a jQuery wrapper for google maps API v3. For people who are used to the jQuery way of scripting, gmap3 provides an easy-to-use interface to google maps. An example of gmap3 usage could be :

$('#map').gmap3({
  marker:{
    latLng:[29.132318972825445,81.32052349999992]
  }
});

As other jQuery plugins, gmap3 supports multiple selectors and chaining. gmap3 encapsulates most of the google maps features, such as polylines, polygons, markers, circles, infowindows and more. Besides that, gmap3 offers some nice add-ons such as context menus, panels and clustered marker management.

home of gmap3 -> http://gmap3.net/en/
source on github -> https://github.com/jbdemonte/gmap3

212 questions
0
votes
1 answer

search with marker and zoom , fit map on near the marker with gmap3

i use gmap3 plugin for show result in google map have text box field , when someone type for example "new york" many marker in the new york town , i want map zoom and fit in new york and show all of the marker in this place? how to can do it? for…
shahriyar3
  • 79
  • 10
0
votes
1 answer

How to modify markers using javascript in gmap3?

Using Gmap3, I have a map set which shows some location but has no markers. Now how can I use javascript/jquery so I can add markers to the map? Basically I have an array with data, that I want to loop through and add markers to the map with…
omega
  • 40,311
  • 81
  • 251
  • 474
0
votes
1 answer

Some kind of a preloader for Gmap3 jquery plugin

I'm using gmap3 jquery plugin to show objects on google map. And while it's loading, Europe is shown on the map, then (I think when all the markers are loaded) the map switches to my location (Samara, Russia). Can I show some kind of preloader while…
webstyle
  • 25
  • 1
  • 1
  • 8
0
votes
2 answers

Custom InfoWindow and Marker using gmap3

I am using gmap3 to create a Google Map with an InfoWindow of the information I specify. It works but I want to customize the InfoWindow to be a rounded rectangle and no arrow point to the location and I want a custom marker on the actual location.…
L84
  • 45,514
  • 58
  • 177
  • 257
0
votes
2 answers

jquery gmap3 update marker on click - google maps v3

I´m just trying out the jquery plugin gmap3 http://gmap3.net/en/ following situation: i have two addresses, and i want the map to be initialy set to address1 and on click i would like the marker to be updated to address2 var address1 = 'an der…
john Smith
  • 17,409
  • 11
  • 76
  • 117
0
votes
1 answer

Show markers on map from code behind

I am trying to implement google maps Jquery version i.e. GMAP3 I am calling the script from the following c# code EDIT: void drawMap(List mapList, bool IsMap) { ScriptManager.RegisterStartupScript(this,…
writeToBhuwan
  • 3,233
  • 11
  • 39
  • 67
0
votes
2 answers

jQuery Gmap3: where is the success callback?

I would like to know when my gmap is loaded. I didn't see any callback method in the documentation and around the web. I'm using this plugin: http://gmap3.net/en/catalog/ Any tip? Thx Regards
Syl
  • 2,232
  • 8
  • 34
  • 45
0
votes
1 answer

Implementing bouncing markers in an embedded google map

I'm working on getting a bouncing marker into Google maps embedded on my page. Here's the code right now: $("#venue-map").gmap3({ map:{ options:{ center:[28.500169, 77.161950], zoom:13, mapTypeId: google.maps.MapTypeId.ROADMAP, …
0
votes
1 answer

Adding a gmap3 marker reference to load additional info on a side panel via AJAX

I'm using the gmap3 jQuery panel to load a map and putting a marker onto the map. I'd like to retrieve additional data when clicking on a marker. I have a side div called #panel and a div for the map, called #mappa. When the map is initialized, I…
razzetto
  • 13
  • 2
0
votes
1 answer

Fixing coordinates of Jquery gmap

Is it possible to have a gmap that is a fixed view? In other words, there is no hand cursor that lets the user change the location of the map? Here is my code: $(document).ready(function(){ $("#map").gMap({ controls: false, …
Bradley Trager
  • 3,570
  • 3
  • 26
  • 33
0
votes
1 answer

How to load jquery-latitude-longitude-picker-gmaps in Mustache.js

I have a web application,in which I use Mustache.js templating library. I am loading a list of hospitals using a HospitalListTemplate as in the code$(this.el).html(Mustache.to_html(HospitalListTemplate, { 'data': this.model.toJSON(), 'longitude':…
dany
  • 1,801
  • 7
  • 27
  • 40
0
votes
1 answer

jQuery GMAP3 auto center after adding marker

I have a select element with some countries, when "change" is fired, I call a function to get the coords then add the marker. It's ok but when the marker is added, the marker isn't centered. I'm using the latest version 5.0b. // get…
Syl
  • 2,232
  • 8
  • 34
  • 45
0
votes
2 answers

gmap3 is too small while opened from mobile device

I develop a mobile app with html5, jquery and google maps. When I use normal map (without gmap3) the size of the street names and the overlays are big enough to see from mobile device. But when i use gmap3 the size of the street names and overlays…
eluleci
  • 3,489
  • 1
  • 26
  • 24
0
votes
2 answers

get markers from kmllayer with gmap3 jquery plugin?

I'm using jquery plugin gmap3 and am using a kmllayer. how can get markers from kml?. I need to filter the markers by regions
jdnichollsc
  • 1,520
  • 1
  • 24
  • 44
0
votes
1 answer

Mouse over marker no longer works after right click

See my fiddle here http://jsfiddle.net/WEZVX/2/ Notice when you mouse over the marker, you see an overlay showing the users name. Then if you right click the marker to display the menu and let it close. The mouse over overlay from before no longer…
Vince Lowe
  • 3,521
  • 7
  • 36
  • 63