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
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
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
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
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
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
> 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
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
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
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
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
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
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.
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
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
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
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
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
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
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.
--
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
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
>
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
> 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.
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
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
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
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
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
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
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
56 matches
Mail list logo