[Google Maps API v3] Re: event listener "Dragend" Doesn't work

2010-12-09 Thread Eric
Ahh now I see so major mistake I done was this document.getElementById("lat").innerHTML = marker.getPosition().lat(); document.getElementById("lon").innerHTML = marker.getPosition().lng(); Thank you very much geocodezip. On Dec 10, 3:24 pm, "geocode...@gmail.com

Re: [Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Gabriel Svennerberg
My initial though at first was also that the browsers with problems ceases to render the image at a certain scale factor. But when I test it, it doesn't seem to be that simple. In a second example I have scaled the image up 300%. The original image is 2658 x 2735 pixels (35 kb) and the scaled up

[Google Maps API v3] Re: event listener "Dragend" Doesn't work

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 10:35 pm, Eric wrote: > As request here is the link : > > http://tayhaithian.byethost2.com/asd.html the dragend event listener works fine for me. http://www.geocodezip.com/tayhaithian_byethost2_com_asdB.html (your problem was how to read the position of the marker when it fired) -- L

[Google Maps API v3] Re: event listener "Dragend" Doesn't work

2010-12-09 Thread Eric
As request here is the link : http://tayhaithian.byethost2.com/asd.html On Dec 10, 1:55 pm, "geocode...@gmail.com" wrote: > On Dec 9, 7:26 pm, Eric wrote: > > > I try to trigger the listener to "Dragend" so I could actually locate > > the lat,lng coordinate. But it seems don't work with my co

[Google Maps API v3] Re: Animation for KML's markers

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 8:36 pm, Duong Nguyen wrote: > Hi, > I want to apply the animation to and modify the icon's size of the > markers of my kml file, just like these > samples:http://code.google.com/intl/en/apis/maps/documentation/javascript/exa...http://code.google.com/intl/en/apis/maps/documentation/java

[Google Maps API v3] Re: Open infowindow via link from seperate page

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 8:04 pm, gh0st wrote: > if I change the associative array idmarkers do I need to use the link ? > id=Marker Two still? > I'm trying to get the example to use the idmarkers array instead of > gmarkers and I'm having a really hard time. Where is your map that exhibits the problems you are

[Google Maps API v3] Re: event listener "Dragend" Doesn't work

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 7:26 pm, Eric wrote: > I try to trigger the listener to "Dragend" so I could actually locate > the lat,lng coordinate. But it seems don't work with my code. You should be getting obvious javascript errors. Please post a link to your map. > Below is > the code I'm working with. No tha

[Google Maps API v3] Animation for KML's markers

2010-12-09 Thread Duong Nguyen
Hi, I want to apply the animation to and modify the icon's size of the markers of my kml file, just like these samples: http://code.google.com/intl/en/apis/maps/documentation/javascript/examples/marker-animations.html http://code.google.com/intl/en/apis/maps/documentation/javascript/examples/icon-c

[Google Maps API v3] Re: Open infowindow via link from seperate page

2010-12-09 Thread gh0st
if I change the associative array idmarkers do I need to use the link ? id=Marker Two still? I'm trying to get the example to use the idmarkers array instead of gmarkers and I'm having a really hard time. whats the purpose of idmarkers[id.toLowerCase()] = marker;? and then if I use idmarkers how do

[Google Maps API v3] Re: Style InfoWindow with Jquery UI

2010-12-09 Thread CroNiX
I'll tell you what I do. I don't use the info window. I use a projection map to get the pixel coordinates of the marker where I want the "info window" to show up and use my own markup, using jquery to then hide/show/position it. You have much more control anyway. Like I don't like the map to scro

[Google Maps API v3] event listener "Dragend" Doesn't work

2010-12-09 Thread Eric
I try to trigger the listener to "Dragend" so I could actually locate the lat,lng coordinate. But it seems don't work with my code. Below is the code I'm working with. var marker; var infowindow; var markersArray = []; function initialize() { var latlng = new google.maps

[Google Maps API v3] event listener "Dragend" Doesn't work

2010-12-09 Thread Eric
I try to trigger the listener to "Dragend" so I could actually locate the lat,lng coordinate. But it seems don't work with my code. Below is the code I'm working with. var marker; var infowindow; var markersArray = []; function initialize() { var latlng = new google.maps

[Google Maps API v3] Re: Dynamically changing MarkerOptions for markers loaded via AJAX

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 4:29 pm, "geocode...@gmail.com" wrote: > On Dec 9, 3:51 pm, Keith Brown wrote: > > > Tried marker.setDraggable(true) and doesn't work. Firebug console says > > marker is not defined? > > I don't see marker defined in the global scope.  I see lots of > "marker" variables local to various

[Google Maps API v3] Re: Dynamically changing MarkerOptions for markers loaded via AJAX

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 3:51 pm, Keith Brown wrote: > Tried marker.setDraggable(true) and doesn't work. Firebug console says > marker is not defined? I don't see marker defined in the global scope. I see lots of "marker" variables local to various (other) functions, but not that would be defined in this click

[Google Maps API v3] Re: Open infowindow via link from seperate page

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 4:06 pm, gh0st wrote: > I've looked it over and I got infowindows to open via a link but I've > run into another problem. > the php loop prints out links to the markers based on whats generated > by the xml file and each marker has a unique id. > each marker is also added to the map via

[Google Maps API v3] Re: Open infowindow via link from seperate page

2010-12-09 Thread gh0st
I've looked it over and I got infowindows to open via a link but I've run into another problem. the php loop prints out links to the markers based on whats generated by the xml file and each marker has a unique id. each marker is also added to the map via the same xml file and then I use the same t

Re: [Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Chris Broadfoot
Sorry about that last message - my email was lagging and I didn't see the latest posts in the thread. It looks like an JS error is coming up on L4 of gmapinput.js - seems that $ is undefined. However, jQuery seems to be in scope. FWIW - everything seems to work anyway. What's the issue now? Chri

[Google Maps API v3] Re: Dynamically changing MarkerOptions for markers loaded via AJAX

2010-12-09 Thread Keith Brown
Tried marker.setDraggable(true) and doesn't work. Firebug console says marker is not defined? Moved the example here: http://www.austintreeexperts.com/AJAXmap.php?f=http%3a%2f%2fwww.austintreeexperts.com%2fgmapsXML.cfm%3fu%3d558%26ad%3d23719 -- You received this message because you are subscribe

Re: [Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Chris Broadfoot
As Larry said, please post a link to your page. Pasted code is not easy to debug - you want help, right? Make it easy for us to help you. Chris On 09/12/2010, at 8:53 PM, Futsutsuka wrote: > Thanks for replies. > 2STU, I don't think its the problem of the format as I tried not only > generate b

Re: [Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Luke Mahé
It's actually a problem with the browsers - they stop displaying a image when it has been scaled up too much. Zoom level 20 compared to zoom level 0 means that the image is scaled up 1 million times so basically the browser says no and stops displaying the image. -- Luke On Fri, Dec 10, 2010 at

[Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Chad Killingsworth
Does the same in FireFox. I'm guessing that either the pixel dimensions or the memory footprint of the image simply becomes too large. I would file this as a bug: http://code.google.com/p/gmaps-api-issues/issues/entry Chad Killingsworth -- You received this message because you are subscribed to

[Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 6:42 am, Gabriel Svennerberg wrote: > I'm experiencing problems with GroundOverlay. I'm using it to cover a > fairly large area the size of Sweden. It works just fine when zoomed > out but disappears from the map at higher zoom levels (i.e. when you > zoom in). It seems to vary across di

[Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Gabriel Svennerberg
Hi Chad, I've put an example up at http://www.svennerberg.com/test/groundoverlay.html It displays the zoomLevel in the top right corner of the map so it should be easy to test. /Gabriel -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3

[Google Maps API v3] Re: KML Descriptive HMTL - Elements being stripped out

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 10:22 am, Joe Brislin wrote: > I have a markers currently being loaded by a KML file. I'm using html > in the description block of the Place markers. Whenever the HTML is > loaded by the maps api, numerous css and js elements are being > stripped out so that the HTML does not display cor

Re: [Google Maps API v3] Re: marker cursor

2010-12-09 Thread Tim Koop
Thanks Esa. In case anyone else stumbles upon this email I should say here that if you add a "shape" property to the Marker options, the cursor doesn't actually change in Chrome, but it still works fine in Firefox. I guess it's a Chrome bug. varbeachMarker=newgoogle.maps.Marker({ position:l

[Google Maps API v3] Re: custom marker sizes

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 4:32 am, jtl4 wrote: > Hello > I have a map in V2 but decided it is time to move to V3. > Rather than try to unpick all the code, my map is similar to this > one:http://www.geocodezip.com/v3_MW_example_categories.html > so I am using this template as a starting point. > > My problem is

[Google Maps API v3] Re: Finding distance between two postcodes

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 8:17 am, TeamSancheZz wrote: > Hey Larry, would you be kind enough to point in the direction of where > to find the documentation on the new Driving Directions Web Service? I > am currently using the directions service, but I really think the web > service will work better with my comple

[Google Maps API v3] custom marker sizes

2010-12-09 Thread jtl4
Hello I have a map in V2 but decided it is time to move to V3. Rather than try to unpick all the code, my map is similar to this one: http://www.geocodezip.com/v3_MW_example_categories.html so I am using this template as a starting point. My problem is that I am displaying custom markers, but each

[Google Maps API v3] Re: Changing a Map with Server Side Data Based On User Criteria

2010-12-09 Thread Victor Blaer
Thanks a bunch Chad I see I have my work cut out for me and I appreciate your detailed reply All the best Victor On 9.12.2010 08:35, Chad Killingsworth wrote: This is a good question and beneficial to others, so I'm adding it as a topic to the Maps API v3 group. In your case, the situation i

[Google Maps API v3] Re: Finding distance between two postcodes

2010-12-09 Thread TeamSancheZz
Hey Larry, would you be kind enough to point in the direction of where to find the documentation on the new Driving Directions Web Service? I am currently using the directions service, but I really think the web service will work better with my complex VB code. Thanks! On Dec 8, 9:27 am, "geocode

[Google Maps API v3] KML Descriptive HMTL - Elements being stripped out

2010-12-09 Thread Joe Brislin
I have a markers currently being loaded by a KML file. I'm using html in the description block of the Place markers. Whenever the HTML is loaded by the maps api, numerous css and js elements are being stripped out so that the HTML does not display correctly. The KML is correct because I load it int

[Google Maps API v3] Displaying kml layer when bounds or zoom changes

2010-12-09 Thread Tom Andresen
I have a function that loads zipcode polygon bounds as kml onto a map on idle. My function determines what zips are in the viewport, then gets the zips' polygon information and displays it on the map. Eventually, I'd like to make the colors of the zips hot/cold depending on users' criteria. http:

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Rossko
> Have a look now. It works but the array is manually written in js > file. Doesn't work in IE6. Gives an error in FF2 - $ is not a function http://easyflat.com.ua/wp-content/themes/twentyten/gmapinput.js Line 4 There are different attempts in the main page to define citiesphp[] all comment

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Mike Kold
Are you saying that I need to have a file that manually inserts markers for private users where I want them? I may have hundreds of pieces of info that are private. I planned on using google's My Maps and just wanted to insert an iframe with a src of the actual map. I didn't plan on using the API t

[Google Maps API v3] Re: Strange error while reloading the map markers

2010-12-09 Thread e
Sorry wrong link... I will create a dev site here... and post the link back. On Dec 8, 4:50 pm, Andrew Leach wrote: > On 8 December 2010 19:23, e wrote: > > > > > > > > > > > > > Here is the problem. > > > After you see the results on the map, if you try to enter a new > > zipcode the map does n

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 10:01 am, Futsutsuka wrote: > Have a look now. It works but the array is manually written in js > file. I don't see a map in IE. > > On 9 Грд, 19:44, "geocode...@gmail.com" wrote: > > > > > On Dec 9, 9:31 am, Futsutsuka wrote: > > > > Uploaded on server - same bug... here is the link

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Futsutsuka
Have a look now. It works but the array is manually written in js file. On 9 Грд, 19:44, "geocode...@gmail.com" wrote: > On Dec 9, 9:31 am, Futsutsuka wrote: > > > Uploaded on server - same bug... here is the link > > http://easyflat.com.ua/poisk-kvartiry/ > > I get an error that kiev is not def

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 9:31 am, Futsutsuka wrote: > Uploaded on server - same bug... here is the link http://easyflat.com.ua/poisk-kvartiry/ I get an error that kiev is not defined and that places.length is null or not an object. > > On 9 Грд, 18:12, Rossko wrote: > > > > > >  Can't give you the link as i

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Futsutsuka
Uploaded on server - same bug... here is the link http://easyflat.com.ua/poisk-kvartiry/ On 9 Грд, 18:12, Rossko wrote: > >  Can't give you the link as its tested locally. > > That's too bad.  Looks like you are stuck with debugging locally too. -- You received this message because you are sub

Re: [Google Maps API v3] Re: 2010/12/5: New Release - including Marker animations, Max Zoom Service

2010-12-09 Thread Anil Pais
Hey Guys If you go to the website below on an Android phone, and click the Green Pin that says "Click To Waft From Here". It brings up a window where you can type in your message, but each time you try, orange boxes keep showing up and prevent you from using the site. This has started happening o

[Google Maps API v3] Re: Single Marker instead of Multiple Marker

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 12:24 am, Eric wrote: > I think topic may have been discussed before but I'm totally new to > here and this API too. As I follow the guide on how to create a map to > let user putting mark on the map. I notice the tutorial showing the > listener event which allow us to put multiple marke

[Google Maps API v3] Changing a Map with Server Side Data Based On User Criteria

2010-12-09 Thread Chad Killingsworth
This is a good question and beneficial to others, so I'm adding it as a topic to the Maps API v3 group. In your case, the situation is that as a user changes selections via custom map controls, the map data needs to be refreshed using content hosted in a SQL database. The problem is that the datab

[Google Maps API v3] Re: onClick hide/ remove markers

2010-12-09 Thread Chad Killingsworth
You would in general attach a click event listener to something (your button) using google.maps.event.addListener. Inside the listener function, you would then call setMap(null) on every marker you wish to remove. For specifics, we'd of course need to see a link to your best attempt (even if it i

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Rossko
> Can't give you the link as its tested locally. That's too bad. Looks like you are stuck with debugging locally too. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api...@

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Rossko
> Or better yet to have public markers and also have private data on > those markers only for members? How would I go about doing that? You can't securely do that client-side. That means you can't do it in javascript or by use of the Maps API. You might write some kind of javascript to only dis

[Google Maps API v3] onClick hide/ remove markers

2010-12-09 Thread Rednek
I have been reading and looking thru examples about hiding/removing markers from a map. Most of them you click on map to add marker then click on the button hide to hide/remove. Is there an example somewhere that shows markers with setMarkers and then a button to remove markers. Have gone thru exam

[Google Maps API v3] disable scalable markers in Streetview?

2010-12-09 Thread evil853
Is there a way to disable scalable markers in Streetview? I understand the markers are scaled based on distance, but in this example you can see the marker is so large it obscures the view. It also creates an inconsistent experience for the user: http://i51.tinypic.com/169kobd.png The same exa

[Google Maps API v3] Re: Issue combining maps with jquery script

2010-12-09 Thread Chad Killingsworth
Your page is giving JavaScript syntax errors: missing ) after argument list - system...?id=123 (line 23) $ is not defined, $(document).ready(function(){ system...?id=123 (line 60) initMap is not defined You might want to try developing in FireFox and using the Firebug addon as it's cons

[Google Maps API v3] Re: Dynamically changing MarkerOptions for markers loaded via AJAX

2010-12-09 Thread Chad Killingsworth
I didn't see any markers load, but in the function you mention marker.MarkerOptions({draggable:true}) is invalid. Try marker.setDraggable(true) instead. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To pos

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Chad Killingsworth
You would programatically emit different javascript based on whether the user was correctly authenticated and authorized to view the data. This will invariably require some sort of server-side technology (such as PHP). Chad Killingsworth -- You received this message because you are subscribed t

[Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Chad Killingsworth
It would help if you actually posted a link to your map so we could see the problem in action ... Chad Killingsworth -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api...@go

[Google Maps API v3] Re: How can i get current zoom level

2010-12-09 Thread Chad Killingsworth
Please refrain from posting code to the group. We much prefer you post a link to your map. However, your problem looks to be that your map variable is defined inside your initialize function and is therefore out of scope when map.getZoom() is called. Declare your map variable globally in the same

[Google Maps API v3] Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Gabriel Svennerberg
I'm experiencing problems with GroundOverlay. I'm using it to cover a fairly large area the size of Sweden. It works just fine when zoomed out but disappears from the map at higher zoom levels (i.e. when you zoom in). It seems to vary across different browsers. In Chrome 8 it only disappears on t

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Mike Kold
On Dec 8, 9:11 pm, Rossko wrote: > > Basically I'm part of a volunteer organization that would like to list > > certain events that we did over certain neighborhoods, included in the > > maps/markers I need to put in data of who ran the events which is > > obviously private and for members of the

Re: [Google Maps API v3] Re: Access road dataset

2010-12-09 Thread Andrew Leach
On 9 December 2010 14:31, Luke Shires wrote: > I don't want to download the database, I want to know if there is some kind > of query method that return the road data for a street in a similar way to > the geo location service from post code. You can get directions between two (or more) known poi

[Google Maps API v3] Re: Access road dataset

2010-12-09 Thread Luke Shires
I don't want to download the database, I want to know if there is some kind of query method that return the road data for a street in a similar way to the geo location service from post code. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API

[Google Maps API v3] Re: How can i get current zoom level

2010-12-09 Thread Vafa
this is all of my code please tell me, why the map.getZoom(); not return any value. see saveData() Function. var marker; var infowindow; function initialize() { var latlng = new google.maps.LatLng(36.4419, 46.4619); var options = { zoom: 13, center: latlng,

[Google Maps API v3] Re: Internet Explorer memory leak with a simple example

2010-12-09 Thread Canam Group
"You can try to set clickable: false and flat: true as Ben suggested here for a 'sluggishness' problem." - In my real application, I need my marker to be clickable. I can remove the shadow, but that doesn't prevent IE from leaking memory. I'll take a look at Fast-marker. Thanks! -- You receive

[Google Maps API v3] Re: How to get LatLng input from a user click ?

2010-12-09 Thread geocode...@gmail.com
On Dec 9, 5:20 am, Mesh3L wrote: > Thank you all for the replies. > > What I'm trying to do is to give the user the ability to chose a > specific place on the map, mark it ( which event is best to chose > for marking? ) and than submit it to the database. The submitted > data will be the Latlng va

[Google Maps API v3] Re: How to get LatLng input from a user click ?

2010-12-09 Thread Mesh3L
Thank you all for the replies. What I'm trying to do is to give the user the ability to chose a specific place on the map, mark it ( which event is best to chose for marking? ) and than submit it to the database. The submitted data will be the Latlng value. On Dec 9, 11:44 am, Rossko wrote: > >

[Google Maps API v3] Dynamically changing MarkerOptions for markers loaded via AJAX

2010-12-09 Thread Keith Brown
I have a map that is loading markers via AJAX and centering the map via clientside geocoding: http://www.austintreeexperts.com/AJAXmap.php?f=http%3a%2f%2fwww.austintreeexperts.com%2fgmapsXML.cfm%3fu%3d558%26ad%3d23719 I want to dynamically change the MarkerOptions for each marker to make them drag

[Google Maps API v3] Re: Access road dataset

2010-12-09 Thread Rossko
No, you are not allowed to download Google's database. You could investigate "snap to street" for ad-hoc queries ; there is an issue with terms of use as you are required to display Directiosn service results. -- You received this message because you are subscribed to the Google Groups "Google

[Google Maps API v3] Re: waypoints

2010-12-09 Thread Rossko
> I would like to put more than 25 waypoints in my route. Break it into sections of less than the limit, and use the directions service for each chunk. Beware of the limits that are placed on the number and speed of requests, to prevent abuse. There are similar threads if you search, example http

Re: [Google Maps API v3] waypoints

2010-12-09 Thread Ronny Aerts
Hello, I you want to use much waypoint, you have to use a "track" and this can be drawn using a gmap polyline object. Examples can be found on the google maps website. vriendelijke groeten, Ronny Aerts 2010/12/9 Jonathan : > Hi everybody. > My name is jonathan and i am new in this group. > > I

[Google Maps API v3] waypoints

2010-12-09 Thread Jonathan
Hi everybody. My name is jonathan and i am new in this group. I have one question and i hope that you have an answer. I am using the google maps javascript API v3 to "draw" on a map a route between 2 points. This works very well. But now i would like to draw a route with many waypoints. I saw so

Re: [Google Maps API v3] Marker Clustering by value

2010-12-09 Thread andy_hubb
Thanks for the reply. Ok, so I'll need to pass an array of marker values through to the markerclusterer code and modify the code. I can do the first part alright - but as i'm completely new to javascript I wouldn't know where to start modifying the code. Is it the calculator function that i'll

[Google Maps API v3] Access road dataset

2010-12-09 Thread Luke Shires
Hi, I am building a maps application to display data from a semantic repository. Items are queries using semantic queries for user context filtering and my own JavaScript methods to determine if points are within specific geo locations. I would like to be able to add functionality to return item

[Google Maps API v3] Re: Passing array from php generated html to JS file

2010-12-09 Thread Futsutsuka
Thanks for replies. 2STU, I don't think its the problem of the format as I tried not only generate by php, but just manualy write in html after var cities = [... 2Larry. Well there is no geocoding as I give lat and lng coordinates to the markers. Can't give you the link as its tested locally. Th

[Google Maps API v3] Single Marker instead of Multiple Marker

2010-12-09 Thread Eric
I think topic may have been discussed before but I'm totally new to here and this API too. As I follow the guide on how to create a map to let user putting mark on the map. I notice the tutorial showing the listener event which allow us to put multiple marker. I would like to change it to only sing

[Google Maps API v3] cara dan petunjuk

2010-12-09 Thread maya dixit
Mohon bantu tentang cara atau penggunaan google maps js api v3 support -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from this group,

[Google Maps API v3] Re: Migrate street view parameters from v2 to v3

2010-12-09 Thread jarreweb
I'm storing lat, lon, zoom, tilt and yaw parameters for places and I used the v2 maps to do that. It seems the scale of zoom and yaw (called heading in v3 maps) is different between v2 and v3 here are the v2 and v3 versions using the same parameters (you can see the view is slightly different, eve

[Google Maps API v3] Re: Markers on Custom Street View Panorama

2010-12-09 Thread luca.dall
solved! I replaced: var panorama = new google.maps.StreetViewPanorama( document.getElementById('pano_canvas'), {panoProvider: getCustomPanorama} ); with: var panorama = new google.maps.StreetViewPanorama( document.getElementById('pano_canvas') ); panorama.registerPanoProvider(getCustomPanor

[Google Maps API v3] Re: How to get LatLng input from a user click ?

2010-12-09 Thread Rossko
> For a second thought, isn't this going to return every click on the map? Yes. > It's impossible to figure which click is when the user want to pick a > particular spot. I'm not sure what you mean. Are you expecting your users to click over the map at random places, in addition to clicking a