[Google Maps API v3] Problem Adding Markers From Database

2010-06-09 Thread Tinman
Hi. I have been working on a dynamic map for a game lately and I am trying to add markers from database entries. I have mad the database and added a few entries into it, I have also made a .php file that creates a xml file that the Google Maps API should be able to collect information from that to

[Google Maps API v3] Re: Maps V3 Polylines enableEditing / enableDrawing ??

2010-06-09 Thread lactarius
Voted. But I wonder what the chances of success. Without this feature I can't upgrade to new version. On the other hand, I need to get elevation data - I tried the topocoding service ( http://topocoding.com ) - but my experience has been not very good - rather, my experience has been bad. Anyone ha

[Google Maps API v3] Re: return directions from directionsService

2010-06-09 Thread Seth
I think it might have something to do with the loop, but how do i solve that? On Jun 10, 12:58 am, Seth wrote: > Okay, nevermind, it's still not working: > >         $.get(searchURL, function(data) { >                 var markers = > data.documentElement.getElementsByTagName("marker"); >        

[Google Maps API v3] Re: return directions from directionsService

2010-06-09 Thread Seth
Okay, nevermind, it's still not working: $.get(searchURL, function(data) { var markers = data.documentElement.getElementsByTagName("marker"); for (var i = 0; i < markers.length; i++) { var latlng = new google.maps.LatLng(parseFloat(m

[Google Maps API v3] How to login My Maps through PHP language?

2010-06-09 Thread shyam
Hi all, I use Map API, I insert demo data in MyMap feature through "Map API - JAVA Script" function. When I call login function that time Google Map redirect to "https://www.google.com/accounts/ AuthSubRequestJS? "then I type Google User Id and Password. Now I have num

[Google Maps API v3] Re: Icons and Shadows

2010-06-09 Thread Eddie LaRue
Thanks, Marc. Everything is working correctly. On Jun 5, 9:18 pm, Marc Ridey wrote: > use MarkerImage to specify the anchor point of your icons and your shadows. > If you only specify a URL, the bottom middle pixel of each image is assumed > to be the anchor point. > > On Sat, Jun 5, 2010 at 7:5

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread Tinman
aah, now I see how its supposed to work! Thanks a million, they should have put up some examples on their code page about this! On 10 Jun, 04:02, William wrote: > On Jun 10, 11:51 am, Tinman wrote: > > > Would there be a way to disable the actual Google Base map so that it > > does not load > >

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread William
On Jun 10, 11:51 am, Tinman wrote: > > Would there be a way to disable the actual Google Base map so that it > does not load > that's where you've got to combine the two google examples, to extend the ImageMapType into a Base Map type: http://www.william-map.com/20100610/1/base.htm ... -- You

[Google Maps API v3] Re: return directions from directionsService

2010-06-09 Thread Seth
Thanks Larry! That was the problem! I want to display the driving time inside an infoWindow On Jun 9, 2:48 pm, "geocode...@gmail.com" wrote: > On Jun 9, 11:06 am, Seth wrote: > > > > > > > So I am working with V3 and I'm trying to calculation the driving time > > between two points (latlng). I

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread Tinman
Now that is something right there! Would there be a way to disable the actual Google Base map so that it does not load, as of right now it loads slow due to the fact it needs to load two maps. I have updated my own v3 example with the full amount of tiles, and it seems to work fine as a basic map,

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread William
I think the first step is to modify the Image Map Type example, which puts your map on top of the google base map as an overlay: http://www.william-map.com/20100610/1/overlay.htm -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread Tinman
I wish there was some better documentation for this, and maybe a basic tutorial for it. As it really does not say me a whole lot as of how I would load my own tiles, and even though I have tried many combinations of this I have yet to make something that really works. Thanks for your replies thoug

Re: [Google Maps API v3] Re: No icons on the map

2010-06-09 Thread Lennart Karlsson
Thanks William, it's very good to have someone else's fresh pair of eyes looking at your code. I put in an 's' and I got the feeling 'This may be the solution!' AND IT WAS! But... not entirely. When I change back to the original XML-generating file i.e. when I select a species from a list in a

[Google Maps API v3] Load Testing

2010-06-09 Thread Yasir Shoaib
I am trying to load test an application on localhost. Just wondering about the following: 1. Since the test is on localhost I guess any API key would work. In case of load testing more hits on the google maps will need a "high traffic site" request be made from the "contact us" link here: http://co

[Google Maps API v3] Panoramio-like image scaling

2010-06-09 Thread Ned
Hi there I'm interested in overlaying many images on my maps When you do this with Panoramio the images automatically scale as you zoom in. Is this possible outside of using Panoramio? Plain image markers might not work ... since from what I can gather they don't scale? thanks for any tips --

[Google Maps API v3] Re: replicating function of map display controls

2010-06-09 Thread Susannah (Google Employee)
Hi Rory, The map type ids are specified as google.maps.MapTypeId.SATELLITE See these docs: http://code.google.com/apis/maps/documentation/javascript/introduction.html -Susannah On Jun 10, 7:51 am, roryreiff wrote: > Hello, > > What function can I call to change the may display type for my map?

[Google Maps API v3] replicating function of map display controls

2010-06-09 Thread roryreiff
Hello, What function can I call to change the may display type for my map? I want to reimplement the MAP/SATELLITE/HYBRID/TERRAIN buttons. So, given the following, what function can I call? I would think that something like map.setMapTypeId('SATELLITE'); would work, but it just makes my map canvas

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread William
On Jun 10, 6:58 am, Tinman wrote: > > Would that meen I would still have to load my maps the old way or is > there a new easier way to do this? > the convenient way is to use the ImageMapType and then add it as a base map type: http://code.google.com/apis/maps/documentation/javascript/overlays.h

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread Chad Killingsworth
That thread was all v3. The ucf library is a great example of what you want to do: http://library.ucf.edu/Administration/Maps/ Take a look at their use of a different projection as well. Custom map types take a lot of time and playing around with to get comfortable with the concept. Your v3 sampl

[Google Maps API v3] Re: No icons on the map

2010-06-09 Thread William
also your code has the function "getElementByTagName" but the original has the plural "getElementsByTagName" ... -- 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...@googleg

Re: [Google Maps API v3] Re: No icons on the map

2010-06-09 Thread Lennart Karlsson
Yes, that's right. I found the other expression somewhere else... Now I've changed back to the original. I'm sorry to say that it didn't change anything on the web page - still I get the same error message and still there are no icons visible... Lennart 2010/6/10 William > your code has this: >

[Google Maps API v3] Re: No icons on the map

2010-06-09 Thread William
your code has this: downloadUrl("min_genxml3_gm.php", function(data) { var xml = data.responseText; var markers = xml.documentElement.getElementByTagName("marker"); but the original parsed the XML text into a DOM using the parseXml() function: http://code.google.com/apis/maps/articles/phpsqla

[Google Maps API v3] No icons on the map

2010-06-09 Thread Lennart K
Hi, I'm new to this forum and I sent a message but I can't find it in the message list. So - I'll make another attempt. I am working on a project to show recoveries of banded birds from Sweden on Google Maps. I started out with API v2 and it was working quite well. However, guided by Ben's & Pamela

[Google Maps API v3] Re: Error adding marker to the marker manager

2010-06-09 Thread William
On Jun 10, 7:37 am, Nathan Raley wrote: > And it is tossing an error when trying to add the Markers this way. > What kind of error is being thrown? have a look at this page which shows how to use the V3 MarkerManager: http://google-maps-utility-library-v3.googlecode.com/svn/tags/markermanager/1

Re: [Google Maps API v3] Re: return directions from directionsService

2010-06-09 Thread Juan Bosco Lopez Jasso
sorry about this post, I found the problem. I was using google.gear as a first resource to get the user location, rather than using google.loader.ClientLocation. I don't understand the problem, but I deleted google.gear and now is working. Thanks On Wed, Jun 9, 2010 at 1:26 PM, William wrote:

[Google Maps API v3] Error adding marker to the marker manager

2010-06-09 Thread Nathan Raley
Okay, I am having a bit of a problem moving from v2 to v3. I've narrowed down the error to adding a marker to the marker manager. I am storing markers that are using coordinates from user values into an array StartFinishMarkers[]. I create my MarkerManager via: ZoneStartFinishMM = new MarkerMana

[Google Maps API v3] Over_query_limit

2010-06-09 Thread HMM
I am new to using google maps. I am currently using javascript API v3 to geocode addresses. Everything seems to work fine except for the OVER_QUERY_LIMIT. From what I have read, I am geocoding too fast and need to put a delay between requests. I have tried this but can't seem to find the right

[Google Maps API v3] Over_query_limit

2010-06-09 Thread HMM
I am new to using google maps. I am currently using javascript API v3 to geocode addresses. Everything seems to work fine except for the OVER_QUERY_LIMIT. From what I have read, I am geocoding too fast and need to put a delay between requests. I have tried this but can't seem to find the right

[Google Maps API v3] Over_query_limit

2010-06-09 Thread HMM
I am new to using google maps. I am currently using javascript API v3 to geocode addresses. Everything seems to work fine except for the OVER_QUERY_LIMIT. From what I have read, I am geocoding too fast and need to put a delay between requests. I have tried this but can't seem to find the right

Re: [Google Maps API v3] Re: Problems converting from v2 to v3 with Marker Manager

2010-06-09 Thread Nathan Raley
Okay, I've resolved the minX issue, I had recopied over the MarkerManager.js file and ended up with a bad copy and paste. I am still unable to add a Marker to my marker manager. Using the new method above, my function for the 'loaded' never gets called. What I want to be able to do is read a lis

[Google Maps API v3] Re: Geocoding API Error Message - this website needs a different key

2010-06-09 Thread pdxoregon
Here is the source from the page generating the error: http://maps.google.com/maps? file=api&v=3&key=ABQIYzS9I5qzephoP7BbxdaMcxQtBcan4ZDCz0Nzkx6cwBd0UitSOhRtfI1XxstA6- WwEyNMGQ-CApXdCg" type="text/javascript"> On Jun 9, 1:40 pm, pdxoregon wrote: > We wer

Re: [Google Maps API v3] Re: Problems converting from v2 to v3 with Marker Manager

2010-06-09 Thread Nathan Raley
Okay, I've done some tweaking with the program and changed how the markers are actually loaded into the Marker Manager. I added a listener when creating the MarkerManager as follows: ZoneStartFinishMM = new MarkerManager(map, ZoneStartFinishMMOptions); google.maps.event.addListener(mgr, 'loaded',

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread Tinman
Yeah I have read this thread and looked at all of the examples and it seems like they are using v2 and not v3, and they are loading the custom map the same way I do on my first example and not the new way introduced in v3. Or is it just me missunderstanding the v3 feature that it is not actual map

[Google Maps API v3] Geocoding API Error Message - this website needs a different key

2010-06-09 Thread pdxoregon
We were successfully using the Geocoding API from our website for several weeks, but started receiving the following message: This web site needs a different Google Maps API key. A new key can be generated at http://code.google.com/apis/maps. I generated and implemented a new key, confirmed that

[Google Maps API v3] Re: return directions from directionsService

2010-06-09 Thread William
On Jun 10, 4:06 am, Seth wrote: > How can I get the > driving time or duration using the GoogleMaps api? because the driving directions service is asynchronous, you will have to modify your own function to become asynchronous. The following shows the difference between synchronous and asynchrono

[Google Maps API v3] Re: Problems converting from v2 to v3 with Marker Manager

2010-06-09 Thread nlraley
And sorry about the formatting, it didn't keep hardly any of it when I submitted. -- 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 t

[Google Maps API v3] Problems converting from v2 to v3 with Marker Manager

2010-06-09 Thread nlraley
I am trying to move my code over to version 3 of the API code; however, I am running into some issues with my MarkerManager that I am moving over from version 2 of the API. I have an html file as an embedded object in a c++ application I have been working on and therefore I don't have a working li

[Google Maps API v3] Re: getBounds not working on Chrome

2010-06-09 Thread Chad Killingsworth
You are calling your initialize function with jQuery's document.ready event. This is incorrect when using the ajax loader. Instead, you should use: google.setOnLoadCallback(initialize); Chad Killingsworth On Jun 9, 2:09 pm, Bossco wrote: > This is happening only in Chrome, > > first of all, the

[Google Maps API v3] Re: Problem With Custom Map Types

2010-06-09 Thread Chad Killingsworth
Have you read this thread? http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/50421ba5c4dd307b/ Chad Killingsworth On Jun 9, 10:31 am, Tinman wrote: > Hi. > I am trying to create a whole new custom map using the new v3 Custom > Map Types, where I would be able to have my o

[Google Maps API v3] getBounds not working on Chrome

2010-06-09 Thread Bossco
This is happening only in Chrome, first of all, the map is not rendered, when I debug I can see the object map is created with all the parameters, but is not being rendered, as consequence getBounds is not working, I got "undefined" This is happening ONLY in Chrome, I have tested it on Safari, IE

[Google Maps API v3] Re: return directions from directionsService

2010-06-09 Thread geocode...@gmail.com
On Jun 9, 11:06 am, Seth wrote: > So I am working with V3 and I'm trying to calculation the driving time > between two points (latlng). I already have the distance and I can get > the driving time using the following code: > > function getDrivingTime(start, end) { > var response; > var request = {

[Google Maps API v3] Re: Marker tooltip delay

2010-06-09 Thread Pil
You certainly mean custom tooltips not the browsers own tooltips. You can try these, mentioned in the last post http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/19e4193779cb5d76/03c93516ce263e15 On Jun 9, 6:00 pm, stewo wrote: > Hello, > > I'm just migrating from v

[Google Maps API v3] return directions from directionsService

2010-06-09 Thread Seth
So I am working with V3 and I'm trying to calculation the driving time between two points (latlng). I already have the distance and I can get the driving time using the following code: function getDrivingTime(start, end) { var response; var request = { origin : start, destination : end, travelMode

[Google Maps API v3] Re: Styling Content inside balloons. possible?

2010-06-09 Thread geocode...@gmail.com
On Jun 9, 10:08 am, Faisal Debouni wrote: > Sorry.. it worked.. plz remove Only you can do that. But better would be to reply to yourself with the solution so someone else who has the same question can learn from your experience. -- Larry > > On Jun 9, 8:00 pm, Faisal Debouni wrote: > > > >

[Google Maps API v3] Re: Styling Content inside balloons. possible?

2010-06-09 Thread Faisal Debouni
Sorry.. it worked.. plz remove On Jun 9, 8:00 pm, Faisal Debouni wrote: > Hi > I have a balloon displayed when a marker is clicked. the content of > the balloon is an HTML form. i want to attach this form to some Jquery > plugins and CSS. > > is there anyway to do that? > > thanks -- You receiv

[Google Maps API v3] Styling Content inside balloons. possible?

2010-06-09 Thread Faisal Debouni
Hi I have a balloon displayed when a marker is clicked. the content of the balloon is an HTML form. i want to attach this form to some Jquery plugins and CSS. is there anyway to do that? thanks -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScrip

[Google Maps API v3] Marker tooltip delay

2010-06-09 Thread stewo
Hello, I'm just migrating from v2 to v3 API. Up to now, I used a custom implementation to show marker titles as tooltip. Glad to see that the new API does this out of the box. I was wondering, however, if there is any possibilty to set the tooltip delay time? My old tooltips were coming up immedia

[Google Maps API v3] How to use Google Maps JavaScript API v3 in commercial web applications

2010-06-09 Thread Gary Tan
Hi, we are a software company, selling intranet applications for our customers. And we are considering embed the google map in our applications. Do we and our customers need to buy Premier version? And is it possible to get a trial or developping version for our development at the moment? Thanks

Re: [Google Maps API v3] Re: V3 Polyline Problems

2010-06-09 Thread Miguel Angel Vilela
At least you gave a working sample, thanks! On Wed, Jun 9, 2010 at 17:20, Kepesk wrote: > Well, I'm not sure. It looks similar, but not a lot of details about > the bug were posted. I'll add my information anyway. Anyone else > have any suggestions? > > -Jacob > > On Jun 9, 2:02 am, Miguel An

[Google Maps API v3] Problem With Custom Map Types

2010-06-09 Thread Tinman
Hi. I am trying to create a whole new custom map using the new v3 Custom Map Types, where I would be able to have my own tiles instead of the regular world map. I was able to do this when running v2 though it was a hard process and not very flexible. What I am trying to do is taking a map from a g

[Google Maps API v3] Re: Map loading fine, but icons taking forever.

2010-06-09 Thread phparrow
Thanks Petru! Hmm..I am in Turkey right now visiting my soncould that be the issue? I know that the Turkish government is blocking/slowing ip's associated with youTube and I had read somewhere that Google had moved the maps to the same ip. In my browser it shows waiting on mt1.google

[Google Maps API v3] Re: V3 Polyline Problems

2010-06-09 Thread Kepesk
Well, I'm not sure. It looks similar, but not a lot of details about the bug were posted. I'll add my information anyway. Anyone else have any suggestions? -Jacob On Jun 9, 2:02 am, Miguel Angel Vilela wrote: > Is this the same as issue #2337? > > Issue 2337: Lost > Polylinehttp://code.googl

Re: [Google Maps API v3] Map loading fine, but icons taking forever.

2010-06-09 Thread Petru ©
I visited your map and i could see the maps and the icons without any inconvenient. 2010/6/9 phparrow > Hello, > > I have created a v3 map for a client here: http://phparrow.com/kickboxing/ > and it was working(loading) fine for the last 2 days until last night, > then it loads the map fine, but

[Google Maps API v3] Re: Push pin problem

2010-06-09 Thread Tony
Thanks, that solved the problem. On Jun 8, 6:45 pm, "geocode...@gmail.com" wrote: > On Jun 8, 1:50 pm, tony wrote: > > > I am just a beginner trying to embed Google maps on my website.  I > > followed the example, but the image of the push pin does not show. > > Here is a link to my code:http://

[Google Maps API v3] Map loading fine, but icons taking forever.

2010-06-09 Thread phparrow
Hello, I have created a v3 map for a client here: http://phparrow.com/kickboxing/ and it was working(loading) fine for the last 2 days until last night, then it loads the map fine, but the icons take forever. I did a search to see if anyone else has the same issue and have not found anything. Th

[Google Maps API v3] Re: synchronous call of navigator.geolocation.getCurrentPosition

2010-06-09 Thread Chad Killingsworth
Make sure you're using the "enableHighAccuracy" option. See http://dev.w3.org/geo/api/spec-source.html#position_options_interface Chad Killingsworth On Jun 9, 5:48 am, Tobe wrote: > getCurrentPosition returns me something like (xx., > yy.) (or with 6 more digits). When I get 14 d

[Google Maps API v3] Re: How calculate zoom for polyline?

2010-06-09 Thread geocode...@gmail.com
On Jun 8, 11:19 pm, Shaliko wrote: > > GLatLngBounds.extendhttp://code.google.com/apis/maps/documentation/javascript/reference.h... > > > with all the points in the polyline would be one suggestion. > > Can an example? If you had posted (or can post) a link to your map as requested in the posting

[Google Maps API v3] Re: Analog "getBoundsZoomLevel" in new API

2010-06-09 Thread Shaliko
Thanks, fitBounds() resolve my problem On Jun 9, 1:12 pm, Miguel Angel Vilela wrote: > If you just need to make your map fit the given bounds, you can use the > fitBounds() method in the Maps > class:http://code.google.com/apis/maps/documentation/javascript/reference.h... > > If you need the

[Google Maps API v3] Re: Problem with KML Layer in google map

2010-06-09 Thread benedetto.bozano
Thank you James, indeed I was working on my local development system... I will try uploading the scenario online and see wht happens, but already I'm very confident that what you say will solve my problem! Thanks a lot! ben On 9 Giu, 12:03, James McGill wrote: > Hi Ben, > > You should pass a UR

[Google Maps API v3] Re: synchronous call of navigator.geolocation.getCurrentPosition

2010-06-09 Thread Rossko
> Also don't know why it is so alternating. It's still a question about geolocation, and not a maps API issue. I understand it, geolocation may use a variety of methods to get a fix - triangulation, GPS, IP, inertial derived from previous fix, etc etc. As most of those take time to work out, the

[Google Maps API v3] Re: Tooltips

2010-06-09 Thread Rossko
> What I'm thinking right now is to try parse the kml file myself and > just plot it manually If you want that level of control for tooltips, that is what you must do. > 2. If it possible to just display some point of the kml only (like if > i have many category of points. You may find that easi

[Google Maps API v3] Re: Memory use when constructing new google.maps.Map

2010-06-09 Thread Rossko
> I'm displaying a web page using Qt QML WebView (which uses QWebKit > underneath).  Initially I display the page with the URL set towww.google.com. > This displays.  I then press a button which sets the URL to a local > HTML file.  The file loads and uses the "onLoad" event to create a new > googl

[Google Maps API v3] Memory use when constructing new google.maps.Map

2010-06-09 Thread redmeat
Hello, I'm trying out the Google Maps JavaScript API v3 on a mobile device. I'm displaying a web page using Qt QML WebView (which uses QWebKit underneath). Initially I display the page with the URL set to www.google.com. This displays. I then press a button which sets the URL to a local HTML fil

[Google Maps API v3] Re: Tooltips

2010-06-09 Thread [A]JumP[S]
I'm very new to these Google Map API but I learn a lot by reading many discussions in this. But now I also have this same question. My situation here is that I just mark the location using Google Earth. I didn't write any description. The Google Earth will display that mark with label. But when I

[Google Maps API v3] Re: synchronous call of navigator.geolocation.getCurrentPosition

2010-06-09 Thread Tobe
getCurrentPosition returns me something like (xx., yy.) (or with 6 more digits). When I get 14 digits it is much more precise (reverse-geocoding often returns the street and not just the quarter). I set the maximumAge to 1000 so that it should be re- geolocated every 10 seconds. Als

[Google Maps API v3] Re: Mouse doesn't work in Webkit browsers

2010-06-09 Thread archinform
Hi William, thanks for checking. I noticed this, too. The strange thing is that, this just affect webkit browsers. And Chrome's JS inspector doesn't throw out any javascript errors related to this. This makes it pretty difficult to find the source for this bug. Needs someone, who knows details abo

[Google Maps API v3] Re: remove icons KML

2010-06-09 Thread Rossko
> In google maps Scale tag does not work That is correct, documented at http://code.google.com/apis/kml/documentation/kmlelementsinmaps.html > and if I remove the tag icon > shows me the default pin Yes, Google assume if you are trying to display KML you want to see the KML. If there is a probl

Re: [Google Maps API v3] Re: Problem with KML Layer in google map

2010-06-09 Thread James McGill
Hi Ben, You should pass a URL to the KMLLayer constructor, and use your .NET application to dynamically generate a valid HTTP response containing the KML data when that URL is accessed. The URL must be publicly accessible via the web, so this will not work if you are working on a local development

[Google Maps API v3] Re: Mouse doesn't work in Webkit browsers

2010-06-09 Thread William
On Jun 5, 5:29 am, archinform wrote: > In the example there is a Google Maps and a Microsoft Bing Div > positioned on the same place (switching implemented by setting > different z-Indices). Maybe this causing the problem in Webkit? > I noticed if you are panning in Bing Map, then move the mouse o

[Google Maps API v3] Re: Mouse doesn't work in Webkit browsers

2010-06-09 Thread archinform
Hi again, tried a lot of things to get the mouse working & spent hours therefore. But without success. Does anyone have an idea, what's the reason for this strange behaviour of webkit? Sascha On 4 Jun., 21:29, archinform wrote: > Hi again, > reported a bug with the pegman few days ago, now I f

[Google Maps API v3] Re: remove marker from google maps

2010-06-09 Thread gardnose
Ah, got it now. I was adding the panorama object after adding the markers, and this wasn't working. So the logic is now: 1 - create map 2 - add custom panorama (set lat/lngs, close button etc) 3 - set panorama to be hidden: panorama.setVisible(false); 3 - add markers to street map This works as

Re: [Google Maps API v3] Re: synchronous call of navigator.geolocation.getCurrentPosition

2010-06-09 Thread Miguel Angel Vilela
That sounds like a question about the W3C Geolocation API, I'm not aware of the influence of maximumAge or the time it takes to obtain the location in the decimal precision for the returned location (assuming that's what you mean with 8 vs. 14 floating point numbers). W3C Geolocation API Specifica

Re: [Google Maps API v3] Analog "getBoundsZoomLevel" in new API

2010-06-09 Thread Miguel Angel Vilela
If you just need to make your map fit the given bounds, you can use the fitBounds() method in the Maps class: http://code.google.com/apis/maps/documentation/javascript/reference.html#Map If you need the actual zoom level number, you would need to first use the fitBounds() method and then use the g

[Google Maps API v3] Re: remove icons KML

2010-06-09 Thread Santiago Nieto Carrera
Thanks, but i can't modify the kml... On 31 mayo, 15:52, Davide Cremonesi wrote: > You mean that you don't want the default markers on points? > Try to define your own style using a blank icon inside your KML, such as > > > > > h

[Google Maps API v3] Re: Show "more" button

2010-06-09 Thread Algirdas Gurevicius
Seems like a lot of work to do that.. Anyway, went back to v2 for now :) On Jun 7, 12:42 pm, Pil wrote: > On Jun 7, 10:53 am, Algirdas Gurevicius > wrote: > > > Did that. No workarounds either?.. > > No, because the layers are not available. > As a crude workaround you may load the layers mixing

Re: [Google Maps API v3] V3 Polyline Problems

2010-06-09 Thread Miguel Angel Vilela
Is this the same as issue #2337? Issue 2337: Lost Polyline http://code.google.com/p/gmaps-api-issues/issues/detail?id=2337

[Google Maps API v3] Re: get all geolocations from a polygon bounded region

2010-06-09 Thread Rossko
> Is there any way i can find all the coordinates from a bounded polygon > region by using functions in PHP or MySql Yes, of course. Search your database for points-in-polygon. In a spatially aware database you can do that directly. Otherwise you have to implement point-in-poly algorithm yourself.

[Google Maps API v3] Re: Problem with KML Layer in google map

2010-06-09 Thread benedetto.bozano
Ciao Davide, thank you for your reply. I use .NET as programming environment, and I've been able to create an output response stream with the correct MIME type; I'm sure that the size and the number of features are inside the allowed limits, since at this stage I'm just making simple tests. Howeve

[Google Maps API v3] Re: get all geolocations from a polygon bounded region

2010-06-09 Thread sodhancha
Is there any way i can find all the coordinates from a bounded polygon region by using functions in PHP or MySql -- 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...@googlegr

[Google Maps API v3] Re: get all geolocations from a polygon bounded region

2010-06-09 Thread sodhancha
can you suggest my any other option of doing something similar to this ? -- 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

Re: [Google Maps API v3] Re: Need help : Transfer coordinate to PHP

2010-06-09 Thread thom
Try some of these http://www.google.com/search?q=javascript+send+form+data+to+php Okay.. Thank you. Lemme try it ^^ -- Regards,,, mastanto http://www.mastanto.com http://thom-sharing.blogspot.com -- You received this message because you are subscribed to the Google Groups "Google Maps JavaS

[Google Maps API v3] Re: get all geolocations from a polygon bounded region

2010-06-09 Thread Rossko
> Yup, i want know all known address within a polygon. > Is it possible? Not practical using Google services, no. -- 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

[Google Maps API v3] Re: Need help : Transfer coordinate to PHP

2010-06-09 Thread Rossko
> It worked. The coordinate showed in the div 'info' each time the marker is > dragged. But how can I take the string lat and lng, so that I can post it to > my PHP script? I just no idea. No basic in the javascript. Just PHP. Okay, so you haave your data in javascript variables and/or in a html f

[Google Maps API v3] Re: get all geolocations from a polygon bounded region

2010-06-09 Thread sodhancha
Yup, i want know all known address within a polygon. Is it possible? -- 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, se

Re: [Google Maps API v3] Re: remove marker from google maps

2010-06-09 Thread Marc Ridey
If you don't want the markers to appear by default in the panorama, use a custom panorama. You can still give it the same DIV as the map if you want them to appear at the same location. Just have: var map = new google.maps.Map(div, ...); var panorama = new google.maps.StreetViewPanorama(div, ...);

[Google Maps API v3] Re: remove marker from google maps

2010-06-09 Thread gardnose
Thanks Marc, Think I'm still missing something here. What I want is to use 'streetViewControl:true' to enable the pegman control. Then when I drop the pegman onto the map, I'd like to hide the markers. You can see what I'm trying to do here: http://www.abergavenny.org.uk/accommodation.htm I've j

Re: [Google Maps API v3] Problem with KML Layer in google map

2010-06-09 Thread Davide Cremonesi
Ciao Benedetto, I used the same approach with an application written in java in the AppEngine. In that case I have a JSP page which outputs the KML (actually KMZ) dinamically. You should be able to do the same in any other language (PHP, phyton, cgi): produce the KML in memory and write it to outpu

Re: [Google Maps API v3] Points along a route

2010-06-09 Thread Miguel Angel Vilela
If the route polyline is enough for you, the Directions web service will give it to you: Directions Responses http://code.google.com/apis/maps/documentation/directions/#DirectionsResponses However, once you have a several-thousand-long route with tons of town and cities along it, obtaining their

[Google Maps API v3] Re: Markers and Event Removal

2010-06-09 Thread Berwyn
thanks you -- 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, send email to google-maps-js-api-v3+unsubscr...@googlegroup