[Google Maps API v3] marker flicker bug

2010-09-23 Thread Farooq Mahmood
Hi, I am getting a very strange behavior while changing the marker's icon on mouse hover. Marker is changing its location as well on mouseover. When I look at the change it seem like that this was a bug and has been fixed on 3.1 Jun 17, 2010 (if it is the same issue). I have a marker mentioning a

[Google Maps API v3] Re: Representing polygons on http get

2010-09-23 Thread Niklasro
On Sep 24, 6:01 am, Ben Appleton wrote: > This is more of a JS question, but interesting nonetheless. > > To convert such a string to a unique number is easiest using a hash.  Given > N strings/polygons, you want a hash function that produces a number with > 2lgN + 10 bits, in which case the N p

Re: [Google Maps API v3] Representing polygons on http get

2010-09-23 Thread Ben Appleton
This is more of a JS question, but interesting nonetheless. To convert such a string to a unique number is easiest using a hash. Given N strings/polygons, you want a hash function that produces a number with 2lgN + 10 bits, in which case the N polygons/strings map to unique numbers with probabili

[Google Maps API v3] Re: Storelocatator - more info in left menu from a new table field

2010-09-23 Thread tinem
Thanks for trying to help. The problem with "Wichita" is ALSO in the site I made directly after following tutorial http://code.google.com/intl/da/apis/maps/articles/phpsqlsearch_v3.html as you can see here http://api.tinemuller.dk/storelocator_v3_tutorial/phpsqlsearch_map.html. After this I made

[Google Maps API v3] Representing polygons on http get

2010-09-23 Thread Niklasro
Hi I can match longitude+latitude+radius matching stuff at arbitrary coordinates. Now next step is match inside a polygon. Can you recommend a way represent a polygon with a number? Ie input is longitude + latitude + number and the number represents a polygon. It's sure doable but too difficult? I'

[Google Maps API v3] Re: Multiple routes on the same map

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 6:51 pm, Leigh wrote: > Larry and Mark, > > OK, you are both correct.  I wasn't using IE and didn't notice > the javascript error.  I will try and follow Mark's advice to > get some debugging tools, but in the meantime, does either of > you have a simple explanation for what is going on

[Google Maps API v3] Re: Manage lot of markers

2010-09-23 Thread Martin
Or create your own custom tile layer: http://code.google.com/apis/maps/documentation/javascript/maptypes.html#CustomMapTypes Martin. On 23 Sep, 15:23, James McGill wrote: > Consider importing your data into Fusion Tables and displaying it as a > FusionTablesLayer. > > Example > here:http://code

[Google Maps API v3] Re: Multiple routes on the same map

2010-09-23 Thread Leigh
Larry and Mark, OK, you are both correct. I wasn't using IE and didn't notice the javascript error. I will try and follow Mark's advice to get some debugging tools, but in the meantime, does either of you have a simple explanation for what is going on in this code? Why is j ever becoming equal

[Google Maps API v3] Re: Newbie with easy question

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 5:30 pm, Daniel H wrote: > OMG, it worked! Thank you so much, Larry! I've been fiddling with this > for two days, and you just solved it in two minutes. The key is to pay attention to your javascript errors. The "myOptions undefined" error lead straight to the line that needed to be r

[Google Maps API v3] Re: Markers show/hide on map

2010-09-23 Thread Sandro007
Hi, It is good example, a bit complicated though. But I will look carefully at it and will try to figure a way. Tks Sandro On Sep 22, 11:27 pm, "geocode...@gmail.com" wrote: > On Sep 22, 6:20 pm, Sandro007 wrote: > > > > > > > Hi, > > > I am trying to make the markers show or hide on a map us

[Google Maps API v3] Re: Newbie with easy question

2010-09-23 Thread Daniel H
OMG, it worked! Thank you so much, Larry! I've been fiddling with this for two days, and you just solved it in two minutes. On Sep 23, 8:06 pm, "geocode...@gmail.com" wrote: > On Sep 23, 4:47 pm, Daniel H wrote: > > > Hi, > > > I am desperate to string together two types of maps: the stylized "h

[Google Maps API v3] Re: Setting maxZoom and minZoom

2010-09-23 Thread Masashi.K
Oops, bit wrong. google.maps.event.addListener. On 9月24日, 午前9:12, "Masashi.K" wrote: > google.maps.event.addListenerOnce(map, "maptypeid_changed", function() > { >         var currentMapTypeId = map.getMapTypeId(); >         var mapTypeReg = map.mapTypes; >         var mapTypeId, mapType; >      

[Google Maps API v3] Re: Setting maxZoom and minZoom

2010-09-23 Thread Masashi.K
google.maps.event.addListenerOnce(map, "maptypeid_changed", function() { var currentMapTypeId = map.getMapTypeId(); var mapTypeReg = map.mapTypes; var mapTypeId, mapType; for(var i in google.maps.MapTypeId){ mapTypeId = google.maps.MapTypeId[i];

[Google Maps API v3] Re: Newbie with easy question

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 4:47 pm, Daniel H wrote: > Hi, > > I am desperate to string together two types of maps: the stylized "hip > hop" map and a map that imports a KML file. I don't have experience in > JAVA, but I have gotten this far:http://pastehtml.com/view/1b6ikfy.html. > You'll notice lines 60-63 I att

[Google Maps API v3] Newbie with easy question

2010-09-23 Thread Daniel H
Hi, I am desperate to string together two types of maps: the stylized "hip hop" map and a map that imports a KML file. I don't have experience in JAVA, but I have gotten this far: http://pastehtml.com/view/1b6ikfy.html. You'll notice lines 60-63 I attempt to bring in the KML data, but to no avail.

Re: [Google Maps API v3] Re: Many polygons drawing slow in IE

2010-09-23 Thread Ben Appleton
KML is rendered as an image tile set; it's not possible to recollection one polygon. However you could make a google.maps.Polygon and overlay that in a different color, so long as it is fully opaque. On 24 Sep 2010 04:13, "Rossko" wrote: >> Before to try to use KML i need to know if it's possibl

Re: [Google Maps API v3] Re: Best practice for showing/hiding a marker? memory leak in IE8

2010-09-23 Thread Ben Appleton
Please provide a link to your site. .setVisible() does not leak memory, it is intended to keep the marker around. On 24 Sep 2010 04:07, "DRI" wrote: > My requirement is to hide a marker. In my example code in the initial > post I have to randomly hide 20 markers out of a total of 200 every > 1.5

[Google Maps API v3] Re: Converting API V2 to V3 problems

2010-09-23 Thread Rossko
> I'm trying to solve a problem with my Google Maps directions with > printing my own markers and the zoom controller. See this thread for some starter info http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/d1713a8d4e307e51 See this issue http://code.google.com/p/gmaps-api

[Google Maps API v3] Re: Polyline arrays in V3

2010-09-23 Thread Awilson430
I'll try putting it up there when I get some breathing room. Right now though, your other example looks like it will help me solve my problem. AL On Sep 23, 3:51 pm, "geocode...@gmail.com" wrote: > On Sep 23, 12:14 pm, Awilson430 wrote: > > > > > > > I developed a page to read and parse a set

[Google Maps API v3] Re: Finding closest office and variable sized icons

2010-09-23 Thread Mark
Thanks - I tried image rescaling for my project recently and couldn't figure it out. Now I see how I should have done it! -- 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: Polyline arrays in V3

2010-09-23 Thread Awilson430
Larry, that looks very promising. Thanks a ton. AL On Sep 23, 4:05 pm, "geocode...@gmail.com" wrote: > On Sep 23, 12:51 pm, "geocode...@gmail.com" > wrote: > > > > > > > On Sep 23, 12:14 pm, Awilson430 wrote: > > > I developed a page to read and parse a set of markers and polylines > > >  wit

[Google Maps API v3] Re: How to remove a marker by double clicking on it through the Google Map

2010-09-23 Thread Mark
oops change 'rightclick' to 'dblclick' On Sep 23, 11:17 pm, Mark wrote: > You need to post some code.  To me, it sounds like you should be > adding the double click event listener to the marker.  Maybe you are > adding it to the map. > > e.g (I've not tested this) > > //marker variable points to

[Google Maps API v3] Re: How to remove a marker by double clicking on it through the Google Map

2010-09-23 Thread Mark
You need to post some code. To me, it sounds like you should be adding the double click event listener to the marker. Maybe you are adding it to the map. e.g (I've not tested this) //marker variable points to the marker just after marker creation google.maps.event.addListener(marker, 'rightclic

[Google Maps API v3] Re: Multiple routes on the same map

2010-09-23 Thread Mark
Larry is spot on. In IE8, with the MS Script debugger, I see directionsDisplay[...]' is null or not an object useIndex.html, line 53 character 14 As an aside, while I was doing my Googlemaps project, for the debugging part I was using MS Script debugger in IE8 to show me errors like this and Net

[Google Maps API v3] Re: Google Street View Help!

2010-09-23 Thread Ray
panorama.setPano(sv.getPanoramaByLocation(fenway, 50, viewFunction)); //find location within 50 meters function viewFunction(data, status) { if (status == google.maps.StreetViewStatus.OK) { var markerPanoID = data.location.pano; // Set the Pano to use the pas

[Google Maps API v3] Re: sidebar xml

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 8:39 am, "i...@spark.gr" wrote: > hi > i have a script with sidebar categories and subcategories > i place it on my server it worls fine but the markers do not show > i guess it is a proble of reading the xml file > i place on the same dir on my server both the xml file and the > javasc

[Google Maps API v3] Re: Multiple routes on the same map

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 10:56 am, Leigh wrote: > Hi all, > > I know that everyone like to work with existing code rather than vague > questions, so I'll start with the very simple version of this > question.  Can anyone help me understand why this works (displays 2 > routes): > > http://www.routeloops.com/Work

[Google Maps API v3] Re: Manage lot of markers

2010-09-23 Thread Ray
If you have your geolocations in a database, you could load them dynamically through Javascript and an Ajax call. ex: var bounds = map.getBounds(); var southWest = bounds.getSouthWest(); var northEast = bounds.getNorthEast(); var swlat = southWest.lat();

[Google Maps API v3] Re: How to remove a marker by double clicking on it through the Google Map

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 10:00 am, ghoastfalcon wrote: > Hi all, >     I have been struggling with this for some time. What I am trying > to do seems very simple and strait forward, but I cannot seem to get > anything to work. I wish I could like you directly to the page I am > working on, but it is behind a fi

[Google Maps API v3] Multiple routes on the same map

2010-09-23 Thread Leigh
Hi all, I know that everyone like to work with existing code rather than vague questions, so I'll start with the very simple version of this question. Can anyone help me understand why this works (displays 2 routes): http://www.routeloops.com/Working/dontUseIndex.html but this does not (display

[Google Maps API v3] Re: 中国地图和卫星地图 不能重合的问题

2010-09-23 Thread kk
It seems ok for me, I am using http://maps.google.com/maps/api/js?sensor=false®ion=cn Can you show your code? kk -- 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...@googl

[Google Maps API v3] Re: Intermittent "Error: Failed" error with Internet Explorer

2010-09-23 Thread Josh
Are you still experiencing this error? I am getting the same error, unfortunately. Any solutions? On Jul 27, 7:26 pm, Wows wrote: > We are developing using the v3 API and are coming across an error on > SOME of our machines, and not others. It also seems to come and go on > the same machine. > >

[Google Maps API v3] Converting API V2 to V3 problems

2010-09-23 Thread Donaldini
Hey, I'm trying to solve a problem with my Google Maps directions with printing my own markers and the zoom controller. In the problem screenshot (see below) you can see that the images i used for my markers (and google's) and the zoom controller on the map turns into a missing image when I print

[Google Maps API v3] How to remove a marker by double clicking on it through the Google Map

2010-09-23 Thread ghoastfalcon
Hi all, I have been struggling with this for some time. What I am trying to do seems very simple and strait forward, but I cannot seem to get anything to work. I wish I could like you directly to the page I am working on, but it is behind a firewall and has not been officially released for the

[Google Maps API v3] sidebar xml

2010-09-23 Thread i...@spark.gr
hi i have a script with sidebar categories and subcategories i place it on my server it worls fine but the markers do not show i guess it is a proble of reading the xml file i place on the same dir on my server both the xml file and the javascript to read the xml file but still not working must be

[Google Maps API v3] Re: Polyline arrays in V3

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 12:51 pm, "geocode...@gmail.com" wrote: > On Sep 23, 12:14 pm, Awilson430 wrote: > > I developed a page to read and parse a set of markers and polylines > >  with controls to show and hide them based on their categories.  I've > >  been able to recreate the markers' functionality in V

[Google Maps API v3] Re: Polyline arrays in V3

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 12:14 pm, Awilson430 wrote: > I developed a page to read and parse a set of markers and polylines >  with controls to show and hide them based on their categories.  I've >  been able to recreate the markers' functionality in V3 but have thus >  far been unsuccessful converting the polyl

[Google Maps API v3] Polyline arrays in V3

2010-09-23 Thread Awilson430
I developed a page to read and parse a set of markers and polylines with controls to show and hide them based on their categories. I've been able to recreate the markers' functionality in V3 but have thus far been unsuccessful converting the polyline code. Below is the V2 code that works. I

[Google Maps API v3] Re: Bug: HitTest region doesn't size with scaled marker icon

2010-09-23 Thread Rossko
> The icon is originally 75 pixels wide, scaled down here. It appears > that Chrome (or the GoogleMaps javascript?) is using the original icon > size for hit testing. Yes, it is doing what you tell it to. Your CreateMarkers() makes a MarkerImage object , with a 75x61 image. When you create actual

[Google Maps API v3] Re: Finding closest office and variable sized icons

2010-09-23 Thread Rossko
Doesn't produce the initial markers in IE6, something to do with variable declaration I think. -- 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 unsub

[Google Maps API v3] Re: does Google cache the result of a KmlLayer URL?

2010-09-23 Thread Rossko
> Does Google cache the result based on the URL? Yes. http://groups.google.com/group/google-maps-js-api-v3/search?group=google-maps-js-api-v3&q=kmllayer+cached&qt_g=Search+this+group -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" gro

[Google Maps API v3] Re: Storelocatator - more info in left menu from a new table field

2010-09-23 Thread Rossko
> If you click on the > markershttp://www.tinemuller.dk/new_new_test_drupal/node/1394 > you will see "nid and a number in bold" - nid is a new field. What markers? I tried a search for 'Wichita' and got the Pacific Ocean (and no markers). Your phpsqlsearch_genxml.php returns invalid XML if no d

[Google Maps API v3] does Google cache the result of a KmlLayer URL?

2010-09-23 Thread DRI
My url (first argument) for KmlLayer has not changed however the content returned by the same url has changed but the image/overlay returned by KmlLayer does not change according to the actual KML file. Does Google cache the result based on the URL? -- You received this message because you are

[Google Maps API v3] Re: Many polygons drawing slow in IE

2010-09-23 Thread Rossko
> Before to try to use KML i need to know if it's possible to change an > options of a single polygon in a kmlLayer (like change color). http://code.google.com/apis/kml/documentation/kmlreference.html#polystyle But if you mean to change the colour after the KML is loaded, I do not know of a way t

[Google Maps API v3] Re: Best practice for showing/hiding a marker? memory leak in IE8

2010-09-23 Thread DRI
My requirement is to hide a marker. In my example code in the initial post I have to randomly hide 20 markers out of a total of 200 every 1.5 seconds. On IE8 marker.setVisible() causes a memory leak. setMap(null) also works in hiding a marker however it is too slow. on IE8 I cannot even see all th

[Google Maps API v3] Re: Sliding side panel

2010-09-23 Thread sgiddings
Thanks Ralph, this was exactly what I was looking for ! On Sep 23, 3:23 pm, Nathan Raley wrote: > According to the example he posted above js and css coupled with some tricks > to handle the map's center among a few other caveats that are all included > in the example linked above. > > On Thu, Se

[Google Maps API v3] Re: Save a "dragged" directionsResult (route)

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 8:39 am, JKurtock wrote: > Yes, that is the answer for which I was looking. > > (Now I just need to figure out how I missed it both in my own > experimentation AND in searching the forums ...) That is the problem with undocumented things. They are hard to find, and they have been kno

[Google Maps API v3] Re: Save a "dragged" directionsResult (route)

2010-09-23 Thread JKurtock
Yes, that is the answer for which I was looking. (Now I just need to figure out how I missed it both in my own experimentation AND in searching the forums ...) Thx. - Jeff -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To po

[Google Maps API v3] Re: Setting maxZoom and minZoom

2010-09-23 Thread Francisco Ramos
The only problem with that way is the length of the slider, it doesn't change, keeping the same length from 0 to 20, and you are checking the zoom level in every zoom_changed Have a look at this snippets and give it a try: minZoom = 5; maxZoom = 15; map = new google.maps.Map(...); google.maps.e

[Google Maps API v3] Re: Many polygons drawing slow in IE

2010-09-23 Thread geocode...@gmail.com
On Sep 23, 7:39 am, Enrico wrote: > Before to try to use KML i need to know if it's possible to change an > options of a single polygon in a kmlLayer (like change color). > Every polygon have a unique id. > > furthermore, i try to generate a kml file, I use a validator that say > that is correct (

[Google Maps API v3] Re: Many polygons drawing slow in IE

2010-09-23 Thread Enrico
Before to try to use KML i need to know if it's possible to change an options of a single polygon in a kmlLayer (like change color). Every polygon have a unique id. furthermore, i try to generate a kml file, I use a validator that say that is correct (http://feedvalidator.org) but i can't draw it.

[Google Maps API v3] Re: Setting maxZoom and minZoom

2010-09-23 Thread korky
Finally managed to do it. For those who're interested : maxZoom = 19; minZoom = 13; google.maps.event.addListener(map, 'zoom_changed', function(){ if(map.getZoom() < maxZoom){ map.setZoom(maxZoom); }else if(map.getZoom() > minZoom){

Re: [Google Maps API v3] Manage lot of markers

2010-09-23 Thread James McGill
Consider importing your data into Fusion Tables and displaying it as a FusionTablesLayer. Example here: http://code.google.com/apis/maps/documentation/javascript/examples/layer-fusiontables-simple.html Regards, James On Thu, Sep 23, 2010 at 8:14 PM, Dom wrote: > Hi, > > I have a map that is lo

[Google Maps API v3] Storelocatator - more info in left menu from a new table field

2010-09-23 Thread tinem
If you click on the markers http://www.tinemuller.dk/new_new_test_drupal/node/1394 you will see "nid and a number in bold" - nid is a new field. How can I get this to show also in the left menu? This is the javascript file http://www.tinemuller.dk/new_new_test_drupal/sites/all/storelocator2/sto

[Google Maps API v3] Finding closest office and variable sized icons

2010-09-23 Thread SmirkingMan
My client needed an office locator for his clients. After scouring the internet without luck for a solution, I wrote my own. Functions: - Continuously sizes the company icons on the map according to the zoom level - icons always 'look right' - Hides icons that overlap - reduces crowding at low zoo

[Google Maps API v3] Re: Markers show/hide on map

2010-09-23 Thread SmirkingMan
Or possbly this http://www.calvert.ch/geodesix/offices.htm On Sep 23, 4:27 am, "geocode...@gmail.com" wrote: > On Sep 22, 6:20 pm, Sandro007 wrote: > > > > > > > Hi, > > > I am trying to make the markers show or hide on a map using the API > > v3. > > > I need the specific marker group to hide w

[Google Maps API v3] mouse wheel works in the opposite way

2010-09-23 Thread mlowicki
HI! I'm developing app using gmaps API but mouse wheel is working in the opposite way to the version from the web so when I move mouse wheel up it zooms out the map. This is widget for Opera browser but in desktop version of Opera on the web wheel works as expected. Where is the problem? BR, Micha

[Google Maps API v3] Bug: HitTest region doesn't size with scaled marker icon

2010-09-23 Thread SmirkingMan
View this page with Chrome: http://www.calvert.ch/geodesix/offices.htm#q%3Dmoscow Slowly move the mouse cursor up and to the left at 135° towards Moscow. Note how the cursor turns to hand and the "Moscow" tooltip appears when you are over Lyubertsy, which is some 45 pixles away from the bottom rig

[Google Maps API v3] Setting maxZoom and minZoom

2010-09-23 Thread korky
Hi, I'm new at coding with the API V3 and I'm actually trying to set maxZoom and minZoom values on my map, but can't find any way to do it. The point of this would be to restrict the user to a max and a min zoom on the map, thus if he reaches the value of maxZoom he can't scroll further and the sam

[Google Maps API v3] Re: Using CKEditor Within An InfoWindow

2010-09-23 Thread korky
Try to make a separate infoWindow for the edit content. On 23 sep, 14:47, Mike Armstrong wrote: > Has anyone accomplished this? I've been running into constant issues. > > I have a map, which is populated with markers via an ajax post, each > marker is binded to an infoWindow, within that infoWin

[Google Maps API v3] Re: Manage lot of markers

2010-09-23 Thread SmirkingMan
http://www.calvert.ch/geodesix/offices.htm On Sep 23, 12:14 pm, Dom wrote: > Hi, > > I have a map that is loading a lot of markers (6000+) from a XML file. > It is very long. > Is there a solution to manage this ? > For instance, only load markers at a specific zoom and only display > markers tha

Re: [Google Maps API v3] Re: Sliding side panel

2010-09-23 Thread Nathan Raley
According to the example he posted above js and css coupled with some tricks to handle the map's center among a few other caveats that are all included in the example linked above. On Thu, Sep 23, 2010 at 7:26 AM, Ralph Ames wrote: > V2 example, collapsing rather than sliding. > > http://koti.mb

[Google Maps API v3] Using CKEditor Within An InfoWindow

2010-09-23 Thread Mike Armstrong
Has anyone accomplished this? I've been running into constant issues. I have a map, which is populated with markers via an ajax post, each marker is binded to an infoWindow, within that infoWindow, I have the ability to click edit, upon clicking edit, I change the content of the infoWindow to incl

[Google Maps API v3] Re: Manage lot of markers

2010-09-23 Thread Francisco Ramos
MarkerClusterer utility might help you to sort this out http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/examples/advanced_example.html On Sep 23, 11:14 am, Dom wrote: > Hi, > > I have a map that is loading a lot of markers (6000+) from a XML file. > It is very long

RE: [Google Maps API v3] Re: Sliding side panel

2010-09-23 Thread Ralph Ames
V2 example, collapsing rather than sliding. http://koti.mbnet.fi/ojalesa/exam/index.html Ralph - www.easypagez.com/maps/map_index.html www.easypagez.com/maps/v3_basicmap.html -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To

[Google Maps API v3] Using jQuery with apache-licenced utilities

2010-09-23 Thread Francisco Ramos
Hi there, I have a question about licences and compatibilities. My project is using jQuery which is GPL v2 licenced... I'd like to use some of the utilities from http://code.google.com/p/google-maps-utility-library-v3/ which are apache-licenced, no compatible with GPL v2 ... could anyone tell me w

[Google Maps API v3] Manage lot of markers

2010-09-23 Thread Dom
Hi, I have a map that is loading a lot of markers (6000+) from a XML file. It is very long. Is there a solution to manage this ? For instance, only load markers at a specific zoom and only display markers that are near the place I am looking ? Dominique -- You received this message because you

[Google Maps API v3] Re: Integration of Google Earth with Google Map Javascript API V3

2010-09-23 Thread Rossko
> Is it possible to integrate google earth with Google Maps using > Javascript API V3? No. There is an enhancement request at http://code.google.com/p/gmaps-api-issues/issues/detail?id=1480 if you would like to add your 'star' to that -- You received this message because you are subscribed to th

[Google Maps API v3] Re: Sliding side panel

2010-09-23 Thread sgiddings
Not sure I totally agree, as I have to use the Maps API to "keep" the map position, as my example indicated. Are you saying that the current implementation on the public web site (maps.google.com) achieves this only using javascript and css ? On Sep 22, 9:19 pm, Nathan Raley wrote: > He meant tha