Re: [Google Maps API v3] is StreetViewPanorama available here ?

2011-05-16 Thread Marc Ridey
See http://blog.mridey.com/2010/11/using-streetviewservice-in-maps-api.html On Tue, May 17, 2011 at 4:28 PM, pec76 wrote: > Hello, > > I am currently laoding a streeview panorama with the following code: > > if (document.getElementById('gf_streetView')){ >var panorama = new > google.maps

[Google Maps API v3] is StreetViewPanorama available here ?

2011-05-16 Thread pec76
Hello, I am currently laoding a streeview panorama with the following code: if (document.getElementById('gf_streetView')){ var panorama = new google.maps.StreetViewPanorama(document.getElementById('gf_streetView'), {navigationControl: true, enableCloseButton: false,addressControl: false,l

Re: [Google Maps API v3] color coded regions dynamic report kmllayer

2011-05-16 Thread James McGill
HTML Links are supported in KML infowindows / balloons. KML is a common approach to high performance maps. The data is rendered server side, which allows large volumes of data to be displayed quickly. Regards, James On Tue, May 17, 2011 at 3:51 AM, geo12345 wrote: > Hi > > We have a requirement

Re: [Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread Chris Broadfoot
We haven't changed anything on the server side. The problem here is that your KML loads too slowly: $ time curl -s http://daviscountyutah.gov/trails/trails_proposed4.kml > /dev/null real 0m39.879s I gather that there's some slowdown on your web host that's causing these issues. Chris -- http:

[Google Maps API v3] Re: Custom Map Types - Base Map Type seems not working

2011-05-16 Thread Quang Nguyen
Hi Chris, Thank for your reply. It's my first post, so sorry for inconvenience. About the demo link, I got from google map api V3 docs page http://code.google.com/apis/maps/documentation/javascript/examples/maptype-base.html It doesn't work for me in Firefox, IE, Chrome, Opera / Windows; Firefox

Re: [Google Maps API v3] Custom Map Types - Base Map Type seems not working

2011-05-16 Thread Chris Broadfoot
See this thread: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/2b3f101fd509919e What browser are you using? The demo you linked to works for me (Chrome/Mac) On Mon, May 16, 2011 at 2:10 PM, Quang Nguyen wrote: > Hi all, > > I'm beating around an example with Custom Ma

Re: [Google Maps API v3] Re: Best way to add many locationmarkers/icons on GoogleMaps

2011-05-16 Thread Chris Broadfoot
On Mon, May 16, 2011 at 9:58 PM, Bert Van der Auwera < bert.vanderauw...@gmail.com> wrote: > The problem would remain, I'd still have to loop through all selected > coordinates to add markers to the map. > Sure, but in all likelihood it'll be fast enough if we're talking about 2,000 markers (more

[Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread geocode...@gmail.com
On May 16, 3:00 pm, en4ce wrote: > wow, that was slow...i thought there is nothing in the map for quite a > minute or so...did you use a debugger? I just tried it again, and this time it did take a really long time to show the markers (opening the map in a new tab in Firefox). -- Larry > > On

[Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread daviscounty
I haven't used anything. Do you have any recommendations? I'm not certain where to start or what types of things to look for. On May 16, 4:00 pm, en4ce wrote: > wow, that was slow...i thought there is nothing in the map for quite a > minute or so...did you use a debugger? > > On 16 Mai, 23:23, da

[Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread geocode...@gmail.com
On May 16, 2:23 pm, daviscounty wrote: > Thanks Larry for checking on this. Actually its still not working. I > should have been more specific about which KMLs aren't working. The > Hiking and the Equestrian KMLs aren't loading. Last week on Friday > Hiking magically started working, but now it is

[Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread en4ce
wow, that was slow...i thought there is nothing in the map for quite a minute or so...did you use a debugger? On 16 Mai, 23:23, daviscounty wrote: > Thanks Larry for checking on this. Actually its still not working. I > should have been more specific about which KMLs aren't working. The > Hiking

[Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread daviscounty
Thanks Larry for checking on this. Actually its still not working. I should have been more specific about which KMLs aren't working. The Hiking and the Equestrian KMLs aren't loading. Last week on Friday Hiking magically started working, but now it is not. They all worked fine up until last week. I

Re: [Google Maps API v3] Re: issues in Distance Matrix Service

2011-05-16 Thread Enoch Lau
If I make a request from France to aksdhlaksdhjasd using your script, it throws an exception line 56: var dist = element.distance.value; This is because you should check the status of the element (which is NOT_FOUND) before you request the distance, which you're currently not doing. You are cur

[Google Maps API v3] Re: Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread geocode...@gmail.com
On May 16, 12:25 pm, daviscounty wrote: > I am using Google maps to trail data and am loading routes exported > out of ArcMap using' Export to KML'.  I've had this > working for 6 months, but last week I noticed that the maps was > loading really slowly and the kml overlays even slower. Some were

[Google Maps API v3] Re: issues in Distance Matrix Service

2011-05-16 Thread Rossko
> In this example, I can't obtain any alert on an erratic destination address > (see if(arr!=''){...}else{alert...}) If I give it a task it can't do, like London to New York, your script hits a javascript error before getting to your your error checking code. Your code attempts to get the distanc

[Google Maps API v3] Re: please, help starting

2011-05-16 Thread geocode...@gmail.com
On May 16, 12:04 pm, juanmol wrote: > thanks! i've upload it to a public server and now works, but yes ... > Tanzania ??? As Rossko observed, you need to understand the coordinates, Sevilla is at: lat=37.383962, lng=-5.99453 Tanzania is at: lat=-5.99453, lng=37.38396 KML uses coordinates in the

[Google Maps API v3] Re: please, help starting

2011-05-16 Thread geocode...@gmail.com
On May 16, 12:04 pm, juanmol wrote: > thanks! i've upload it to a public server and now works, but yes ... > Tanzania ??? I'm looking for Sevilla (Spain). Don't the same google > maps coordinates and a KML?. Maybe i need other way to do the same. > I have a table in mysql with 1700 directions (no

[Google Maps API v3] MarkerClusterer - help please!!

2011-05-16 Thread major...@yahoo.co.uk
Hi I'm a complete noob to the Google Maps API v.3 but am trying to develop a program for my WEB based GIS course. Haven't programmed in about 15 years which doesn't help! I've got a map of the 118 universities around the UK which shows some clustering thta I'd like to use MarkerClustere to g

[Google Maps API v3] Map loads very slowly, KML layers even slower, some not at all or sporadically.

2011-05-16 Thread daviscounty
I am using Google maps to trail data and am loading routes exported out of ArcMap using' Export to KML'. I've had this working for 6 months, but last week I noticed that the maps was loading really slowly and the kml overlays even slower. Some were not showing at all. I double checked that the my

Re: [Google Maps API v3] Changing marker colours dependent on data

2011-05-16 Thread major...@yahoo.co.uk
Thanks for your help - got it to work! -- 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-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-ap

[Google Maps API v3] Re: please, help starting

2011-05-16 Thread juanmol
thanks! i've upload it to a public server and now works, but yes ... Tanzania ??? I'm looking for Sevilla (Spain). Don't the same google maps coordinates and a KML?. Maybe i need other way to do the same. I have a table in mysql with 1700 directions (no coordinates). I've trying to do a linux scrip

[Google Maps API v3] Re: Problem when calling contains() within LatLngBounds

2011-05-16 Thread Rossko
> If the bounds passed on the GeocoderRequest are not meant to restrict > results for that area, I don't know what is the function of that. They're not meant to restrict the results, see the docs - http://code.google.com/apis/maps/documentation/javascript/services.html#GeocodingViewports "Note tha

[Google Maps API v3] Re: please, help starting

2011-05-16 Thread Rossko
>   var sevilla = new google.maps.LatLng(37.383962, -5.99453); ... >       37.383962, -5.99453 > open in firefox and nothing, only show me the map, not the Placemark, > why? Not looking in the right part of the world? Zoom out a long way ... KML coordinates order is long,lat http://code.google.c

[Google Maps API v3] New styling of FusionTable layers - discussion

2011-05-16 Thread Joe
Hi, there; As I'm reading one of the articles on the code front page (http://googlegeodevelopers.blogspot.com/2011/05/turn-up-power-of-your-fusion-tables.html) I'm thinking that the new direction of how Maps and FusionTables interact is incompatible with my (just went live last week) Boise

Re: [Google Maps API v3] Re: Problem when calling contains() within LatLngBounds

2011-05-16 Thread Luke Mahé
results[0].geometry.bounds is not always defined - bounds is returned if it is applicable. You should instead check to see that .bounds exists before you try to use it and if it doesn't - try to call contains() and pass in results[0].geometry.location if that exists too. -- Luke On Mon, May 16

[Google Maps API v3] color coded regions dynamic report kmllayer

2011-05-16 Thread geo12345
Hi We have a requirement to display some regions color coded in a map. We have noticed that by keeping the polygon KML on a public server we get fast response/ high performance. (our kml in total is about 20Mbytes so drawing with geoxml3 is not an option) We can do this with FusionTablesLa

[Google Maps API v3] Re: Problem when calling contains() within LatLngBounds

2011-05-16 Thread Draiken
Found a place to host the code. http://jsfiddle.net/EjKTh/ I really don't know what is wrong... Sorry about the typos, I'm in a real hurry to get this working. On May 16, 12:49 pm, Draiken wrote: > Okay, silly mistake about the contains, made sense to me it would > accept a LatLngBounds but it

Re: [Google Maps API v3] Re: issues in Distance Matrix Service

2011-05-16 Thread Benjamin Heyman
Hi, thanks for your quick answer. You can see my example here. I've tried many ways, I may have used the wrong syntax, for Google doesn't tell much about it. In this example, I can't obtain any alert on an erratic destination address (s

[Google Maps API v3] Re: Problem when calling contains() within LatLngBounds

2011-05-16 Thread Draiken
Okay, silly mistake about the contains, made sense to me it would accept a LatLngBounds but it accepts only a LatLng But now I managed to prove the error with the intersects() Was trying to add a map with the script so people could see the error, but don't have anywhere to place it. basically ma

[Google Maps API v3] Re: Problem when calling contains() within LatLngBounds

2011-05-16 Thread geocode...@gmail.com
On May 16, 7:22 am, Draiken wrote: > Hi, I am trying to restrict the search from the geocoder to a certain > LatLngBounds > > I am getting two strange behaviours: > > 1 - When positioning the center in >       Lat: -25.4278 >       Lng: -49.27305556 >       Zoom: 12 >     Then  searching "getú

[Google Maps API v3] Re: issues in Distance Matrix Service

2011-05-16 Thread Enoch Lau
Hi, thanks for the feedback. NOT_FOUND and ZERO_RESULTS are *element* statuses, i.e. they are the potential status of an individual element of the response not of the entire response. In oth

[Google Maps API v3] Problem when calling contains() within LatLngBounds

2011-05-16 Thread Draiken
Hi, I am trying to restrict the search from the geocoder to a certain LatLngBounds I am getting two strange behaviours: 1 - When positioning the center in Lat: -25.4278 Lng: -49.27305556 Zoom: 12 Then searching "getúlio" in geocoder address within the bounds of that map

[Google Maps API v3] How to open a java script web page

2011-05-16 Thread dheva karunya
http://123maza.com/65/Hennah258/ -- 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-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+u

[Google Maps API v3] issues in Distance Matrix Service

2011-05-16 Thread Benjamin Heyman
I would like to report a few issues about Distance Matrix Service : when you enter an erratic origin or destination address (like "sdfdsf, sdfsdfsd, France") or when the driving distance could not be calculated (like a France-Cuba distance for instance), The service will never send back the sta

[Google Maps API v3] Re: How to put links in KML layer infoWinow

2011-05-16 Thread geocode...@gmail.com
On May 16, 7:09 am, Raju M wrote: > do you know how to impliment > *google.maps.KmlMouseEvent? I have used it. The documentation is pretty clear. > or do u know any samples code? > * Did you try searching the group: http://groups.google.com/group/google-maps-js-api-v3/search?group=google-maps-

[Google Maps API v3] Re: How to put links in KML layer infoWinow

2011-05-16 Thread Raju M
do you know how to impliment *google.maps.KmlMouseEvent? or do u know any samples code? * -- 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-v3@googlegroups.com. To unsubscr

[Google Maps API v3] Re: how can i set organise markers in groups ?

2011-05-16 Thread Rossko
> i have a small problem , i want set markers  in groups so i can hide > or show them when i click in an icon . Here's a recent thread on the same idea http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/caf719db9a6f8378/eecd533db4db3b5e A common keyword for what you want is

[Google Maps API v3] Re: Best way to add many locationmarkers/icons on GoogleMaps

2011-05-16 Thread Bert Van der Auwera
Hey Chris, The problem would remain, I'd still have to loop through all selected coordinates to add markers to the map. I think using fusion tables is my best bet here, although it's still in an experimental phase. Thanks for the tips. On 16 mei, 13:28, Chris Broadfoot wrote: > On Mon, May 16,

Re: [Google Maps API v3] Re: Best way to add many locationmarkers/icons on GoogleMaps

2011-05-16 Thread Chris Broadfoot
On Mon, May 16, 2011 at 5:29 PM, Bert Van der Auwera < bert.vanderauw...@gmail.com> wrote: > As for why I need more than a thousand markers on the map, I can't > Oh, I see now. You don't really need Polygon/Circle. Did you consider rendering a regular google.maps.Marker with an image of a circle

[Google Maps API v3] Re: checkboxes and markers

2011-05-16 Thread Dinos
That's exactly what I was looking for. Thanks! On May 12, 7:10 pm, Bob Hamers wrote: > Hey, you could check out this > script;http://www.geocodezip.com/v3_MW_example_categories.html > I'm just implementing it now, and seems to work perfectly. -- You received this message because you are subsc

[Google Maps API v3] Re: Switch Map

2011-05-16 Thread Rossko
> I am displaying directions in map1 and loading kml layer in map2, both map > rendering in same map_canvas. How can i switch maps Put them in different divs instead, and hide/show them how you wish. Yoou could put your two maps in some tabbed content utility for example. -- You received this me

[Google Maps API v3] Re: Best way to add many locationmarkers/icons on GoogleMaps

2011-05-16 Thread Bert Van der Auwera
Thanks for the tips and links, I'm gonna check them out today. As for why I need more than a thousand markers on the map, I can't tell too much but the idea is that users can select coordinates from a list and when a coordinate is selected, it should show on the map. The idea is to have a huge amo