Questions tagged [jquery-ui-map]

jquery-ui-map is the Google maps v3 plugin for jQuery and jQuery Mobile

The Google Map version 3 plugin for jQuery and jQM takes away some of the head aches from working with the Google Map API. Instead of having to use Google event listeners for simple events like click, you can use jQuery click events on the map and markers.

It is also very flexible, highly customizable, lightweight (3.2kB or 3.9kB for the full) and works out of the box with jQuery mobile. But one of its best features (atleast for SEO people) is that you can populate a map from microformats, RDFa or microdata on your site, which can be used as a fallback when a user doesn't have javascript enabled.

88 questions
0
votes
1 answer

MarkerClusterer & jQuery UI Map: clusters not showing

I am using the jquery-ui-map plugin together with markerclusterer. Markers are loaded from an external JSON file. This works great to add the markers and content for each info window. No problems so far. jQuery, jQuery UI Map and MarkerClusterer…
0
votes
1 answer

jquery raty and jquery ui map adding stars to the infowindow dynamically based on data from getJson()

I have a problem with proper configuration off dynamically adding of ratings to the info window of jquery ui map. First I tried to do it in on the go in $.each of getJson like that: $(labelka).raty({ readOnly: true, score:…
andilabs
  • 22,159
  • 14
  • 114
  • 151
0
votes
0 answers

jquery ui map no geolocation default position

I was wondering how to set the position of the map if there is no available geolocation or if it is disabled in the browser. Find an example here : http://jquery-ui-map.googlecode.com/svn/trunk/demos/jquery-google-maps-geolocation.html/ …
Wild Rock
  • 1
  • 3
0
votes
0 answers

jquery-ui-map: GetCoordinates and write it as json data from webmethod

I have a simple question, my jquery-ui-map function is here like this. $('#map_canvas').gmap().bind('init', function () { // This URL won't work on your localhost, so you need to change it // see…
sakir
  • 3,391
  • 8
  • 34
  • 50
0
votes
1 answer

JQuery UI Map Search Not Working

I was trying to use JQuery UI Map on my project. All the example codes available there seem to work properly even when i use the sample code on my project. However i didn't find example for searching a location by it address. My intention is to find…
M Rijalul Kahfi
  • 1,460
  • 3
  • 22
  • 42
0
votes
1 answer

jQuery UI Tabs not working inside jQuery UP map (google map V3)

I am stumped. I have this test map that does almost everything right except for a working jQuery UI tabs setup inside the info window. This is the solution in a "ordinary" google map application. google.maps.event.addListener(infoWindow, 'domready',…
0
votes
1 answer

jquery-ui-map how to set zoom level and center the map

how do I set the zoom level in this code $(function() { $('#map_canvas').gmap({ 'disableDefaultUI':true, 'callback': function() { var self = this; $.getJSON( 'location1.php',…
Vwake
  • 171
  • 3
  • 16
0
votes
1 answer

how to attach an event listener using jQuery map v3?

i am trying to load more markers when the map is dragged and i'm not sure how to get the current bounds. var map = $('#map'); map.gmap().bind('init', function(evt, map) { $(map).dragend(function(){ console.log('a'); }); }); i need…
0
votes
1 answer

jquery-ui-map init event not called

I am learning about JQUERY MOBILE and tried to add a map using jquery-ui-map plugin. Map is displayed properly, but I am having problems with adding markers to it. Functions like: $('#map_canvas').gmap().bind('init', function(event, map) or …
Janusz Chudzynski
  • 2,700
  • 3
  • 33
  • 46
0
votes
1 answer

jQuery UI Map Control Click

I'm trying to create a button on the jQuery Ui Map, when the user clicks the button the map should panTo (or center) on the users location I have the following control
sahmed24
  • 358
  • 2
  • 3
  • 13
0
votes
1 answer

jQuery UI Map Current Position Marker with Accuracy

Is it possible in a PhoneGap application using jQuery UI Map, to set the current position as a blue dot with the blue radius around it for the accuracy as it happens with the native Google Maps application in Android ? If so, how can I achieve that
sahmed24
  • 358
  • 2
  • 3
  • 13
0
votes
1 answer

JQuery Ui Map Change Marker Position

I have the following code, that get's a user position on Android, and creates or (should) update a marker on the Map var myPos = null; function locSuccess(position) { var newPoint = new google.maps.LatLng(position.coords.latitude,…
sahmed24
  • 358
  • 2
  • 3
  • 13
0
votes
1 answer

Adding Multiple Markers with info windows having different text using jquery-ui-map

I am working on a project where I use jquery-ui-map to add multiple markers to a map. Each marker will have different info windows with different text. But when I add them by iterating my array the same text comes to all the info windows. Could…
msrameshp
  • 626
  • 2
  • 12
  • 33
0
votes
1 answer

jquery-ui-map (google maps jquery plugin) style infowindow

Anyone had success styling the infowindow in this jQuery Google Maps plugin? I managed to style the map canvas, add mouseover/out functions on markers, have control over the infowindow content but not the infowindow color, radius, background,…
Sergio
  • 28,539
  • 11
  • 85
  • 132
0
votes
1 answer

How to style boundaries around the country using jquery ui maps?

How to style boundaries around the country region (for ex: in google maps 'France',coloring border around the country region).. I am using jquery-ui-maps v3.. How can I do this ?
Amb
  • 3,343
  • 7
  • 27
  • 34