[Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-14 Thread William
On Jun 15, 7:57 am, Nathan Raley wrote: > > I'm just not sure as to > what that line 8 is actually trying to do that would be causing this. > the source code above N(a,b) is called the "map" function in higher order programming, so you really need to know the function b() which is being applied t

Re: [Google Maps API v3] Re: KML Files won't show in Maps.

2010-06-14 Thread Harry Osoff
Thanks William, I had to chuckle at that. Always something so simple. At least it's not some missing bracket or brace. cheers Harry On Mon, Jun 14, 2010 at 11:16 PM, William wrote: > On Jun 15, 10:38 am, Harry Osoff wrote: >> Here is a snippet from my KML file: >> 26.035697350,-96.9804387

[Google Maps API v3] Re: KML Files won't show in Maps.

2010-06-14 Thread William
On Jun 15, 10:38 am, Harry Osoff wrote: > Here is a snippet from my KML file: > 26.035697350,-96.980438760 > KML has cartesian coordinates shown as x,y so it should be longitude,latitude like this: -96.98043876,26.03569735 -- You received this message because you are subscribed to the

Re: [Google Maps API v3] KML Files won't show in Maps.

2010-06-14 Thread Harry Osoff
James, Thanks, I thought for sure you had seen what I had misses. Yet it still does not show. I have three files for testing http://1537news.com/KML.html http:/1537news.com/KMLoff.html http:/1537news.com/KML3.html KML has the layer with 6 placemarks. KMLoff does not have any KML layers KML has

Re: [Google Maps API v3] KML Files won't show in Maps.

2010-06-14 Thread James McGill
The URL you specify for your KML file is invalid. Try changing: var platformLayer = new google.maps.KmlLayer( 'http: 1537news.com/gulfPlatformOne.kml'); to var platformLayer = new google.maps.KmlLayer( ' http://1537news.com/gulfPlatformOne.kml'); On Tue, Jun 15, 2010 at 10:38 AM, Harry Osoff w

Re: [Google Maps API v3] Re: marker setPosition() blinking

2010-06-14 Thread Luke Mahé
Hey guys, We are aware of this and it should be resolved soon. -- Luke On Tue, Jun 15, 2010 at 2:33 AM, Nathan Raley wrote: > Actually nevermind, it is still doing it. > > I forgot when I compiled my program and had the link to the html element I > was testing the new api with I had not saved

[Google Maps API v3] Re: Several markers and infowindows on map?

2010-06-14 Thread Flambino
> The problem is that the image from previous infowindow appears a short moment > before the new apperas! Sounds like you're re-using/re-displaying the same infoWindow-object for all the markers, and just swapping out the content each time (then you'd get that split second of old content before t

[Google Maps API v3] KML Files won't show in Maps.

2010-06-14 Thread Harry Osoff
Here is a snippet from my KML file: http://earth.google.com/kml/2.1";> http://1537news.com/geocode/map-icons/numeric/gulf/blackDot.png

[Google Maps API v3] Re: Load markers after bounds_changed

2010-06-14 Thread William
On Jun 13, 8:17 am, Richard wrote: > * What happens the the bounds have changed only a bit and the AJAX > returns markers that are already visible on the map? you could use a tiling scheme, where the ajax requests are for entire rectangular regions of markers, and you would check before making an

[Google Maps API v3] Check if a point on the map is inside a KML overlay

2010-06-14 Thread beatpanda
Hello all, I'm looking for a way to see whether a particular point is inside a KML layer. I found some code to do this with polygons, but it doesn't seem to work with KML layers. Also, if my understanding is correct, the KML layer is drawing multiple polygons based on what it finds in my KML file

[Google Maps API v3] Re: Message: Unspecified error?

2010-06-14 Thread Mukul
I also got this error on IE6 and 7. For me, it was happening because I was loading the map inside jQuery $(document).ready(). Once I put it inside the body's onload, the error was gone. -Mukul On Jun 7, 9:09 am, FLX wrote: > Hello, > > Example:http://flx.me/activio > When viewing with IE it give

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-14 Thread Nathan Raley
I stand corrected, I ended up getting the error but it took a lot longer to trigger it in the other playback. So I am going to look through the information for the markers and see what is going on there. It seems to be triggering when certain markers pass across the field of view on the street vi

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-14 Thread Nathan Raley
Great suggestion. I loaded it up in a standalone, granted I didn't have the markers or the replay features; however, I was unable to reproduce the effects. I loaded up a different database with different data for my markers and my replay information and it appears to be running through smoothly.

[Google Maps API v3] Setting cursor for Groundoverlay?

2010-06-14 Thread dfd
Back to maps after some month of absence... Ok, i have following problem: Set the cursor on the map to draggableCursor: 'crosshair' in the map options > fine. Adding a GroundOverlay to the map > mouseover the overlay > cursor is "pointer", mouseout switch back to "crosshair". Bug or wanted behav

[Google Maps API v3] Several markers and infowindows on map?

2010-06-14 Thread 3D-kreativ
Hi, When looking around on the Internet, I only find examples of code with just one marker and one infowindow on the map. So, for that reason I ask this forum where I can find som code example with several markers and infowindows on the map. I want it as simple as possible so I can understand the

[Google Maps API v3] Re: Hide markers when using Street View

2010-06-14 Thread 3D-kreativ
Thanks, but it still doesn't work! Any ideas whar could be wrong? Or perhaps I don't understand how to apply it to my code? Preciate som help if possible. Thanks! On 6 Juni, 01:10, Chad Killingsworth wrote: > Here's your > answer:http://groups.google.com/group/google-maps-js-api-v3/browse_thread

[Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-14 Thread Chad Killingsworth
Normally when I see errors like this in my code, it's something subtle I did - like forget a "new" keyword when creating a LatLng object. That's why it's important to post a link to your site so we can help debug the issue. I realize your map is embedded in an application, but you could create a s

[Google Maps API v3] StreetView Markers not being removed?

2010-06-14 Thread Nathan Raley
Let me describe my current situation as I stand right now. I set my Pano to a div called pano via: myPano = new google.maps.StreetViewPanorama(document.getElementById("pano")); map.setStreetView(myPano); Now it is my understanding after some previous replies that in order to have a marker show up

[Google Maps API v3] Re: infowindow problem with polylines

2010-06-14 Thread sb
Something of a workaround; I can get the multiple infowindows with multiple markers working fine. Getting a single infowindow to appear on a polyline(where it is clicked) is fine but the data is static. The problem is with multiple data. http://srsz750.appspot.com/api3/polylines-multiple.html goo

[Google Maps API v3] Re: Regarding gmaps v3 error while zooming. with multiple markers on map

2010-06-14 Thread Rossko
Your lats and longs are still strings e.g. var mapLatitude = "51.389599"; and remain as strings when use them e.g. var k=new google.maps.LatLng(mapLatitude, ... I've no idea if that actually is the source of your problem, but your compressed code is difficult to figure out and debug. --

Re: [Google Maps API v3] Re: How does one add a Marker to both the regular map and the custom panorama?

2010-06-14 Thread Nathan Raley
As a side note, I might not be using a "custom" panorama. I used the: myPano = new google.maps.StreetViewPanorama(document.getElementById("pano")); map.setStreetView(myPano); To get my Pano to be in a div rather than go full screen street view once street view is opened. Not sure if this is what

[Google Maps API v3] Re: How does one add a Marker to both the regular map and the custom panorama?

2010-06-14 Thread nlraley
Is there anyway to link the marker dragging between the 2 markers if I create 2 separate markers? On Jun 14, 8:12 am, Nathan Raley wrote: > Okay, let me make sure I have this right, so as long as I am specifying that > the street view panorama is to be placed in a div that I have defined I have >

[Google Maps API v3] Custom Pano in order to set in div, how can I link the markers between the map and the pano?

2010-06-14 Thread Nathan Raley
I had to create a custom pano in order to show the panorama object in my own div at the same time as it shows the map. Since it doesn't appear there is any way to show the markers on both the map and the panorama if you use a custom pano, I have had to create 2 separate markers for each marker tha

Re: [Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-14 Thread Nathan Raley
It is an embedded web component using windows browser, so its using IE. I could post you a link to the site; however, it doesn't work as a standalone without the c++ program feeding it the necessary values it needs. Any ideas what function that is trying to call? It appears to be triggered prima

[Google Maps API v3] Re: KML tag and links.

2010-06-14 Thread Chad Killingsworth
You could certainly post this as a feature request. I'd star it. Chad Killingsworth On Jun 14, 10:36 am, Fatstrat wrote: > I am using the v3 API and am trying to get links that are in the > tag in the KML file to open in the same window but no > matter what I do the links always open in new tab

[Google Maps API v3] Re: Error on line 8 while panning around in street view...

2010-06-14 Thread Chad Killingsworth
What browser are you experiencing the issue in and can you post a link to your site? Chad Killingsworth On Jun 14, 11:47 am, Nathan Raley wrote: > When panning around in street view I occassionally get an error on line 8: > Invalid argument.  Debugging brings me to this section below: > > functi

[Google Maps API v3] Error on line 8 while panning around in street view...

2010-06-14 Thread Nathan Raley
When panning around in street view I occassionally get an error on line 8: Invalid argument. Debugging brings me to this section below: function N(a,b){if(a)for(var c=0,d=K(a);chttp://groups.google.com/group/google-maps-js-api-v3?hl=en.

Re: [Google Maps API v3] Re: Streetview - pov automatically pointing at marker

2010-06-14 Thread Nathan Raley
Is this pushed to the current version? I am getting a: StreetViewClient is null or not an object when trying to perform the following: userPoint = google.maps.StreetViewClient.getPanoramaByLocation(latlng); On Fri, Jun 11, 2010 at 5:32 PM, Marc Ridey wrote: > Note: StreetViewService.getNearestP

[Google Maps API v3] Re: Add Listener & JQuery

2010-06-14 Thread finco
Getting closer - the following code displays the streetview in the tab on all but the first instance. Any idea why the domready doesn't work here and what I can do about it? google.maps.event.addListener(marker, "click", function() { if (infowindow) infowindow.close(); infowindow

Re: [Google Maps API v3] Re: Best Practice ...Large Polyline/Polygon Files

2010-06-14 Thread Harry Osoff
Davide, Thanks, I will give that a try. Harry On Mon, Jun 14, 2010 at 10:12 AM, Davide Cremonesi wrote: > Hello Harry, > have you considered to visualize your polygons through a KMLLayer? > I had the same problem and this solution worked for me. > > Regards, Davide > > On Jun 14, 3:37 am, Harry

Re: [Google Maps API v3] Re: marker setPosition() blinking

2010-06-14 Thread Nathan Raley
Actually nevermind, it is still doing it. I forgot when I compiled my program and had the link to the html element I was testing the new api with I had not saved it and closed out of it when I went home for the weeked. It was loading the old page using api v2. On Mon, Jun 14, 2010 at 10:10 AM, N

Re: [Google Maps API v3] KML tag and links.

2010-06-14 Thread Davide Cremonesi
Can you post a fragment of the KML file here as an example of content? 2010/6/14 Fatstrat > I am using the v3 API and am trying to get links that are in the > tag in the KML file to open in the same window but no > matter what I do the links always open in new tabs or windows. I've > been sea

[Google Maps API v3] KML tag and links.

2010-06-14 Thread Fatstrat
I am using the v3 API and am trying to get links that are in the tag in the KML file to open in the same window but no matter what I do the links always open in new tabs or windows. I've been searching Google for days for a fix but nothing seems to be working. How can I make links in the infowin

[Google Maps API v3] Re: Add Listener & JQuery

2010-06-14 Thread finco
Getting closer - the following code displays the streetview in the tab on all but the first instance. Any idea why the domready doesn't work here and what I can do about it? google.maps.event.addListener(marker, "click", function() { if (infowindow) infowindow.close(); infowindow

[Google Maps API v3] Re: Best Practice ...Large Polyline/Polygon Files

2010-06-14 Thread Davide Cremonesi
Hello Harry, have you considered to visualize your polygons through a KMLLayer? I had the same problem and this solution worked for me. Regards, Davide On Jun 14, 3:37 am, Harry Osoff <1537n...@gmail.com> wrote: > How does one best implement poly(line/gons) with 120K points. > > These are static

Re: [Google Maps API v3] Re: marker setPosition() blinking

2010-06-14 Thread Nathan Raley
That's odd b/c it appears to be working fine on mine, even if I bump up the update rate to 4x what was causing a flicker last Friday. How complex is your set position part? Mine's like this: VehiclePosMarker.setIcon(tempString); VehiclePosMarker.setPosition(point); And doesn't appear to be flick

[Google Maps API v3] MarkerManager and use with Panorama possible?

2010-06-14 Thread Nathan Raley
Can you use the marker manager with the panorama similar how you use it with the map just by specifying the panorama instead of the map? Like: markerManager = new MarkerManager(pano, options); markerManager.addMarkers(myMarkers, 15) Thanks, Nathan -- You received this message because you are su

[Google Maps API v3] Re: marker setPosition() blinking

2010-06-14 Thread en4ce
nope, i cant confirm that, iam still in blinkmode ;) On 14 Jun., 15:38, Nathan Raley wrote: > It appears that they resolved this over the weekend as I no longer have the > issue. > > On Sun, Jun 13, 2010 at 7:00 PM, Jeff McFadden wrote: > > > I've had the exact same issue, since 3.1 was released.

[Google Maps API v3] Re: Use Street view like ultimate zoom

2010-06-14 Thread Chad Killingsworth
You'll need to add event handlers to the zoom_changed and dblclick events on the map (and possibly others). Inside those handlers, if the map is already at the max zoom level, you'd need to retrieve the nearest panorama using the StreetviewService object. Once you obtain a valid panorama, you'd use

[Google Maps API v3] Use Street view like ultimate zoom

2010-06-14 Thread Laurent
Hey, I try to use Google Maps JavaScript API v3 for my future website. How can I use street view like the ultimate zoom (without move pegman) ? Thanks. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, sen

Re: [Google Maps API v3] Re: marker setPosition() blinking

2010-06-14 Thread Nathan Raley
It appears that they resolved this over the weekend as I no longer have the issue. On Sun, Jun 13, 2010 at 7:00 PM, Jeff McFadden wrote: > I've had the exact same issue, since 3.1 was released. Thanks for > filing the bug report. > > -- Jeff > > On Jun 13, 11:05 am, frogmaster wrote: > > Submitt

Re: [Google Maps API v3] StreetView in v3

2010-06-14 Thread Nathan Raley
I don't set the street view position at creation because I later feed in the center position before displaying the street view. I show an overlay of the street view like we used to have in version 2 of the api and when the user clicks on an overlay position I set the center. What I have now is th

Re: [Google Maps API v3] How does one add a Marker to both the regular map and the custom panorama?

2010-06-14 Thread Nathan Raley
Okay, let me make sure I have this right, so as long as I am specifying that the street view panorama is to be placed in a div that I have defined I have to create 2 separate markers in order to have them placed both on the regular map and on the street view? On Fri, Jun 11, 2010 at 5:46 PM, Marc

[Google Maps API v3] Re: Multiple polygons on a single layer?

2010-06-14 Thread Chad Killingsworth
KMLLayers offer click interaction (including custom click interaction). Here's a real-world example using KMLLayers: http://search.missouristate.edu/map/mobile/ Chad Killingsworth On Jun 13, 12:51 pm, CarlEd wrote: > Thanks Chad.  As I want to have a degree of interaction with the > individual p

[Google Maps API v3] Re: Hide floatShadow Pane or Remove it

2010-06-14 Thread Chad Killingsworth
I would expect removing it to cause problems. You might be better off setting it's visibility style to false. Chad Killingsworth On Jun 14, 5:01 am, Pil wrote: > You can access the panes for example from an OverlayView(). > As soon as you can access the panes you can also remove it. > > On Jun 1

[Google Maps API v3] Re: Map not updating after marker changed

2010-06-14 Thread franksmule
Thanks en4ce, that worked a treat. I also used markers[i].setMap(map); after changing the location, and it updates it straight away too. On Jun 14, 9:31 am, en4ce wrote: > i would not work with visible, try use that functions for ya > > function hideMarkers(){ >   for (var i = 0; i < markers.len

[Google Maps API v3] Re: Regarding gmaps v3 error while zooming. with multiple markers on map

2010-06-14 Thread venkata
sorry here is the link : http://www.frooly.com/marketplace/marketplace-viewproduct?pid=44 thanks . On Jun 14, 11:41 am, Rossko wrote: > > here is the link > > :http://localhost:9687/marketplace/marketplace-viewproduct?pid=65 > > I cannot connect to your localhost -- You received this messag

[Google Maps API v3] Maybe repetitive: printing markers

2010-06-14 Thread jouen...@hotmail.com
Dear fellows, I have used Google Maps API for the first time (V3) and it works fine on my website, and onscreen, yet when I print, I cannot print route- overlay (which seems to be Google policy, so this was my lack of knowledge), yet I can neither print (it does not show) the only marker I need to

[Google Maps API v3] Re: Regarding gmaps v3 error while zooming. with multiple markers on map

2010-06-14 Thread Rossko
> here is the link > :http://localhost:9687/marketplace/marketplace-viewproduct?pid=65 I cannot connect to your localhost -- 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.

Re: [Google Maps API v3] Places API Application

2010-06-14 Thread Miguel Angel Vilela
On Mon, Jun 7, 2010 at 10:31, Miguel Angel Vilela wrote: > On Fri, Jun 4, 2010 at 19:19, Rick Holmes wrote: > >> The upcoming Places API sounds like something that could be useful on >> at least one site that I may be developing. But to get API >> credentials, I need an AdSense Publisher ID. Sin

[Google Maps API v3] Re: Hide floatShadow Pane or Remove it

2010-06-14 Thread Pil
You can access the panes for example from an OverlayView(). As soon as you can access the panes you can also remove it. On Jun 14, 12:56 am, leumas67 wrote: > Hi, > > I want to remove all the shadows from my map : >  - for markers, there is a property "flat" which is perfect >  - for infoWindow

[Google Maps API v3] Re: Add Listener & JQuery

2010-06-14 Thread finco
the link is http://www.keypointpartners.com/test/mab/fromxml.html I have adjusted the listener and now the tabs appear on the first instance of the infowindow but now the streetviw does not render (first instance or otherwise). The listener has been adjusted to: google.maps.event.addListener

Re: [Google Maps API v3] Re: Regarding gmaps v3 error while zooming. with multiple markers on map

2010-06-14 Thread Siva KV
I have tried changing all the latlng's to float as you have suggested but the problem still persists. error : in firebug ---> b[$a] is not a function (62 out of range 41) the above error occured when I tried to zoom . zoom worked only twice . when I tried to zoom more the map freezes and firebug

Re: [Google Maps API v3] How to get the countryCodeList and the RegionCodeList of the goolgemap?

2010-06-14 Thread Miguel Angel Vilela
I'm afraid that is against the Terms of Service, check this with your legal dpt.: Google Maps/Google Earth APIs Terms of Service http://code.google.com/apis/maps/terms.html On Mon, Jun 14, 2010 at 09:33, duoduo wrote: > Excuse me, I hope for your help. > Now, I want to get all the county names

[Google Maps API v3] Re: Map not updating after marker changed

2010-06-14 Thread en4ce
i would not work with visible, try use that functions for ya function hideMarkers(){ for (var i = 0; i < markers.length; i++) { markers[i].setMap(null); } } function showMarkers(){ for (var i = 0; i < markers.length; i++) { markers[i].setMap(map); } } On 14

[Google Maps API v3] How to get the countryCodeList and the RegionCodeList of the goolgemap?

2010-06-14 Thread duoduo
Excuse me, I hope for your help. Now, I want to get all the county names and the first level city names in the world of Google maps. And then, I want to set them in my database that be used in my GIS System. There is anyway to get those lists? Thanks! -- You received this message because you are