1
vote
0answers
6 views

google maps tracks API

I need help, I am developing an aplication with use google maps tracks API.I not be able to use google maps tracks API. I am using the ...
-1
votes
1answer
18 views

Google Maps merge rectangles into one polygon and search it

Below is my code with an array of bounds and rectangle drawings on the map representing each bounds item. http://jsfiddle.net/XffyE/4/ Is it possible to merge multiple rectangles/bounds into one ...
0
votes
1answer
9 views

snap polyline to road - google maps api v3

I am trying to realign the a lot of points (which forms a polyline for user trace) to the road. The problem is that these are massive number of points, about 7000 point. And the status is ...
0
votes
0answers
8 views

elements won't redraw in chrome/safari on z-indexed svg

I have a page in which I'm drawing on a fixed svg element over a fixed google map using d3. I have scrollable objects which move past, and I'm drawing lines to the map. If I have the map off to the ...
0
votes
0answers
11 views

Append an Ember.View to a google.maps.OverlayView

I'm trying to append an Ember.View to a google.maps.OverlayView. In the google.maps.OverlayView.draw method, I get overlay's panes (google.maps.OverlayView.getPanes) and I want to append my Ember.View ...
-1
votes
1answer
29 views

Allow one instance of Google Maps API to control two maps

I have two versions of the same map on my page: one is made smaller via CSS and is displayed in a sidebar. The other is larger, and it opens in a lightbox when an png overlaid on top of the small map ...
0
votes
0answers
15 views

Need to create a chain of multiple filters using jQuery XML Data

I am trying to create Google Map using XML data. I have the XML file and index file all set up but can't able to figure out how should i create multiple filters using jQuery or any other tools that ...
-1
votes
0answers
21 views

Google Maps Adding Polylines

I am new to using google maps, i am looking at an example however i would like to show polylines and markers moving for each polyline i add. I have modified the html view to show two start and end ...
0
votes
1answer
22 views

Usage limits for services when used with Google Maps Javascript API v3

I'm trying to clarify the usage limits for Google Maps services (e.g. Places, Directions, etc) when used with the Google Maps Javascript API. According to the official documentation The ...
1
vote
0answers
17 views

How can I programmatically change the selection of a google maps api autocomplete input?

I understand that in order to fire the place_changed event programmatically with the google maps javascript API v3 you do the following: google.maps.event.trigger(autocomplete, 'place_changed'); ...
0
votes
1answer
25 views

Creating links when switching between custom street view panoramas via <select>

I have a Street View-map of my campus area. I can navigate around the areas with the links created with getCustomLinks fine. But I have been stuck with this for a while now: is there a way to change ...
0
votes
0answers
21 views

Is it possible to paint any country with any color in google maps by country name?

I want to paint any country with any color and cover it in google maps. I find a way to draw polygon by coordinates: var mypolygon; var polyCoords = [ new ...
-1
votes
0answers
24 views

Google map not displaying in template

I want to use google maps to display address of a place on a map from my website, the address will be picked from the database. That's why i did something like this {{post.address}} in the code, But ...
0
votes
0answers
8 views

Animating Just a single Marker in Google Map-Multiple Markers aspx Page

I have designed Google Map aspx Page that displays multiple locations of bank-branches on the Google Map in the form of Markers. The Google map page appears as a pop-up window from another aspx page ...
0
votes
2answers
35 views

Generate a link from Google Maps center to another mapping site

Using the Google Maps API v3, I'd like to take the map center coordinates and construct a URL based on them that would send a user to an external mapping site. Constructing the URL is not the ...
0
votes
1answer
20 views

Google Maps Walking Directions replace Exact Coordinates with nearest road. Is there a workaround?

Long story short, I have a HTML5 GeoPositioning enabled map on a phone. I have the current location, I want to show directions to specific coordinates. Google maps is replacing the exact coordinates ...
0
votes
1answer
34 views

Google Map showing only in Firefox

i have a facebook app using Heroku and i use a google map for it. The google map is displayed only in Firefox Browser. Chrome an IE will not display it! I can't understand why and i need your help! ...
0
votes
0answers
15 views

Street View panorama is grey?

I have built a page that displays different views of a location e.g. roadmap, satellite and streetview. When I try to display a streetview panorama it is not working. I have a separate div for each ...
0
votes
2answers
27 views

Website find People near me

How website like facebook do location service ? I want to create website that can detect my location, and my friend location. And get the location (maybe the coordinate) and use that information to ...
0
votes
2answers
44 views

Javascript Array Alternatives [on hold]

I'm working with some API using Javascript. I want to populate a list that looks [and works] like this. var data = google.visualization.arrayToDataTable([ ['Country'], ['US'], ...
0
votes
0answers
11 views

Google Maps API + Wax.g + IE = Tiny Tiles

I'm using wax.g to display custom tiles on a Google Map. This works fine in every browser I've tested, except IE. In other browsers, the tiles are rendered correctly, but in IE, the tiles a rendering ...
3
votes
2answers
26 views

Incorporating google maps api into chrome extension/alternative to document.write

I am trying to incorporate google maps api into my chrome extension. However, I found out that manifest version 2 does not allow document.write. Is there any way around this?
0
votes
2answers
39 views

The shortest path between two addresses

Using google map, you can actually get the different possible routes between two addresses, also you get the length of every possible route. I'm now working on a website with google map, i want to ...
0
votes
0answers
24 views

issue in setting marker on google map

javascript: $(document).ready(function(address){ var address = "{{ userprofile.work_street }},{{userprofile.work_suburb}},{{userprofile.work_postcode}},{{ userprofile.work_country }}"; ...
0
votes
1answer
15 views

How to animate just a single marker in Google Maps API

I have designed Google Map aspx page showing multiple locations in the form of markers. The page appears as a pop-up from another aspx page. That another aspx page is having one drop-down control from ...
0
votes
2answers
25 views

Retailers search with google maps API

I need to build a postcode checker where the user will put in a postcode and it they will be presented with a google map with their 3 nearest retailers. It will also need to zoom in to the point where ...
1
vote
1answer
48 views

google map to show marker on address

js: function initialize() { $('#refreshmap').on('click', initialize); var location_latitude = $("#id_location_latitude").val() var location_longitude = ...
0
votes
1answer
35 views

Google Maps Styled & Visualization GeoCharts

I made a styled google map and I want to use some visualization Geocharts. Can I use both simultaniously? html, body, #map-canvas { margin: 0; padding: 0; height: 100%; } ...
0
votes
1answer
10 views

Applying jQuery to an HtmlDivElement object in a Google Maps control

I'm trying to create a map legend in Google Maps v3 using jQuery UI's buttonset() function. I want to programmatically create the div tag, so my code looks like var legend = ...
-2
votes
1answer
25 views

Get a postcode from lat and long [duplicate]

I have a lat and long and would like to send these via a http request to something like google maps and retrieve a postcode for the UK. Is this possible?
0
votes
1answer
14 views

Display buildings at any zoom level using google maps javascript API

I am working with the google maps javascript api and would like to display the building overlays at any zoom level. Right now I am developing a map for my company and in order to see the entire campus ...
0
votes
0answers
16 views

How to add dynamic legend on a dynamic printable Google map

I have a Google map which is dynamically altered by the client. Now I want to have a legend that would show up when they click the print option for the map. I don't want to attach a static map with ...
1
vote
1answer
29 views

Google Maps Default.css stylesheet import

I'm trying to set up a simple style google map on my website. I have literally copied the basic map into my HTML and it worked, but when I do the same with the Simple Styled Map, it fails. ...
-4
votes
1answer
21 views

Gmaps application does not display direction service when executed [on hold]

So ive posted on here recently asking for help with my application, however even after fixing the application according to the instructions given, it doesnt work and i have absolutely no idea why. ...
1
vote
1answer
34 views

Can't capture google map width html2canvas

I have a problem when capture screen width html2canvas of html2canvas.hertzen.com, when I capture Map of google map in my page I can't see map My map http://i.stack.imgur.com/GliSo.jpg My capture ...
0
votes
0answers
11 views

Transmit data to Google Maps

I am doing a project about simulating movement on Google Map. I writed a Java Swing application and embed a browser in it, which showing the Google Map. What I need to do is to select data(which is ...
-1
votes
1answer
21 views

show marker depends on address in database-Django

I am developing a application in django in which i want to set a google map which should show the marker depends on address in database. I want to know how to do this in javascript and django. ...
0
votes
0answers
16 views

Javascript skipping lines when trying to geocode location

I'm trying to use this function to geocode a string passed to it into a google maps result. function codeAddress(address) { var firstResult; geocoder.geocode( { 'address': address}, ...
1
vote
1answer
56 views

Google Maps Zoom in on Marker with One Click Multiple Markers

I have read a lot of other posts here on StackOverflow and in Google Search, and I still cannot get this to work correctly. I think it has something to do with my for loop. I already set a mouseover ...
0
votes
0answers
17 views

Allowing user to draw a rectangle on a custom image/map, and get coordinates

I want to show a custom map as an image in a web page and allow the user to draw a rectangle on the place s/he wants, and getting the coordinates of the top left and bottom right corners in the next ...
0
votes
1answer
68 views

Google Maps API V3 - Dynamically change InfoBox backgroundColor by Dropdown list

I trying to dynamically change InfoBox backgroundColor by using Dropdown list (I use this InfoBox to Create a Map Labels). For this I employ google.maps.event.addDomListener, but values ​​not returns. ...
0
votes
0answers
32 views

Show photo from panoramio - javascript

Here I have a code that show object only if there photo in google place.photo api if not there show only icons. Now I want to if there is not photo of object in places api to get photo from panoramio ...
-1
votes
2answers
20 views

Google Maps code inside of the object literal

I'm trying to create a wrapper object for google maps script, but for some reason it doesn't seem to be working - could someone have a look at the below code and tell me what I'm doing wrong please? ...
0
votes
2answers
29 views

Javascript - Execute 2 functions after triggering 1 eventListener

Im making a googleMaps like application, and i need it to execute two functions when an image within the application is clicked. The first function shows a content string with the name of the object ...
0
votes
1answer
32 views

add namespace to your javascript

I have worked on google map api few years ago and wrote a little reusable utility. At that time adding google map api reference does add all the api classses in your page's global namespace. As this ...
0
votes
0answers
29 views

Highcharts Polar Chart - Make whole segment clickable / Change position of labels

I'm currently working on a Polar Chart that sits on top of the Google Map API. When you click a segment it zooms in, the polar chart disappears, and it shows the individual points within that segment. ...
2
votes
1answer
68 views

Google direction doesn't working

I try to make direction for my current position and marker coordinate. so i get latitude and longitude using getcurrentposition. then, i mark it. function initialize() { directionsDisplay = new ...
0
votes
1answer
15 views

Sidebar links in google map not loading from dynamically generated markers

I’ve got a google map loading which plots markers via JSON and a loop – all fine with this so far. However, I’m also trying to generate sidebar links from the markers with a function ...
0
votes
1answer
13 views

Infowindows Displayed on the Same Marker

for (var i = 0; i < locs.length; i++) { var marker = new google.maps.Marker({ position: new google.maps.LatLng(locs[i][0], locs[i][1]) , map: ...
0
votes
1answer
9 views

Google Maps not rendering correctly within jquery tabs plugin

I'm working on a updating a realtor's website and would like to add a Google Map to the object page. The map will be shown within a tabbed container. For the tabs I'm using IDTabs, a small jQuery ...

1 2 3 4 5 98
15 30 50 per page