Re: [Google Maps API v3] Re: convertion between zoom and fov values

2017-06-07 Thread Thomas Orlita
If is anyone still interested, here are the formulas I use: - Convert *fov* to *zoom*: zoom = -(Math.log(*fov*/45)-2*Math.log(2))/Math.log(2) - Convert *zoom* to *fov*: fov = 180 / Math.pow(2,*zoom*) https://stackoverflow.com/a/42319897/4227998 -- You re

[Google Maps API v3] call google maps api to get all zipcodes in radius of (lat,lon)

2016-01-17 Thread Thomas Miller
I have programmed many "Great circle" query using SQL, Java, Python, C#, Perl etc. That is easy. I have a unique problem... I am using a horrific product named Microsoft CRM 2013. This system (when run in Azure) does NOT let me access the SQL database directly. All I can do is store a list of

[Google Maps API v3] Use Machine Learning to Update google map

2015-11-16 Thread Thomas Li
). What do you think? Thomas -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-maps-js-api-v3+unsubscr...@googlegroups.com. To po

[Google Maps API v3] Re: New Utility Library: Google Earth API

2012-09-25 Thread thomas verbeke
Hi, I'm a little confused: does the http://code.google.com/p/earth-api-utility-library/ still work (with V3) or do we need to use this library and is there some more information available about what's inside the library? On Wednesday, April 6, 2011 2:19:39 AM UTC+2, Josh Livni (Google Employee)

[Google Maps API v3] Saving map and places data. Clarification on conflicting information.

2012-08-31 Thread Thomas Clowes
ply based on licensing restrictions imposed on google? I can understand that google would not want a site to mine data and then stop using their services, I am however simply trying to save data which will provide neccesary information whilst reducing the load on the maps API. Many Thanks for your t

Re: [Google Maps API v3] Re: dblclick and click

2012-03-08 Thread Thomas Lefort
Yes sorry it was a bit of a stupid question indeed... I am stuck though as I need to have both events handled by the same element, which OK is arguably bad practice... I guess I will have to do with the timer solution. Pil wrote: On Mar 8, 9:22 am, Thomas Lefort wrote: BTW what is the

[Google Maps API v3] dblclick and click

2012-03-08 Thread Thomas Lefort
Is there a clean way to handle the click/dbclick issue in v3? The "issue" arising when you want to have a different behaviour on both click and dblclick, as click is automatically triggered on a dblclick event. I have seen some rather unclean workarounds such as timers and else... looking for s

[Google Maps API v3] Implementing a glasspanel to capture some mouse events before the shapes and markers overlay

2012-02-02 Thread Thomas Lefort
ought to be an easier way of implementing a glass panel ;-) Thanks for any help, Thomas -- 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 un

Re: [Google Maps API v3] Raised Limit for Not-for-Profit

2012-01-30 Thread Thomas Hubschman
Hello Luke, I just did. Will it really take 30 days? That would push back our release date quite a bit. Any chance of expediting the request? Kind regards, Tom On Mon, Jan 30, 2012 at 7:23 PM, Luke Mahé wrote: > Hi Tom, > > Did you apply for a Google Maps and Earth grant? > http://earth.googl

Re: [Google Maps API v3] hide transit stations

2011-08-18 Thread Thomas Wingate
Is it possible to define the styles directly in the *mapOptions* variable? The documentation mentions styling the default map *"**either at time of construction or by calling ** setOptions"* but is a

[Google Maps API v3] Input fields in custom overlay

2011-07-13 Thread Thomas Girard
Hello, I have a problem that just crept up recently (past 2 days) where all input fields in my custom overlay will not receive focus. They seem to register click events just fine but the only way I can reach them to type is by tabbing into them from elsewhere. Is this a known bug? I haven't ch

Re: [Google Maps API v3] Street View images not loading in IE

2011-04-28 Thread Thomas Simpson
I am specifically talking about the Panoramic view that you get when you drag the little "Man" icon and drop it on the maps. The Panoramic view comes up and the 3d "road line" is present, but there is no imagery. This is only the case on IE (I'm using 7 though I asked a friend to check 8 and he

[Google Maps API v3] Street View images not loading in IE

2011-04-27 Thread Thomas Simpson
On the current (3.4) version of the API, using the default drag and drop "street man" to open a street view, the images are not loading on IE. It seems to have started failing yesterday, but it certainly failing right now. It works fine in Firefox. -- You received this message because you are

Re: [Google Maps API v3] Java Script Error http://maps.gstatic.com/intl/en_us/mapfiles/api-3/4/4a/main.js

2011-03-11 Thread Thomas Baxter
Can you provide a link to an example? On Fri, Mar 11, 2011 at 9:59 PM, Ravi wrote: > We are getting the following java script while invoking from our site > in IE. It can be reproducible mostly. But there are no problem in FF, > Safari and other browsers. > > Message: Unspecified error. > Line:

Re: [Google Maps API v3] Persistant Title?

2011-03-09 Thread Thomas Baxter
Have you looked at InfoBox? http://code.google.com/p/google-maps-utility-library-v3/wiki/Libraries On Wed, Mar 9, 2011 at 4:38 PM, whiteatom wrote: > Hello, > I'm trying to have the markers on my map have persistent titles that show > all the time like in Google Earth. Basically I want the title

Re: [Google Maps API v3] GM V3 API multiple KMZ/KML

2011-03-09 Thread Thomas Baxter
Take a look at this post: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/d141c913badec13a The way in which they load the KML files puts all layer references into an array. With that array you can simply loop through each reference, hide all but the one you want to show.

Re: [Google Maps API v3] Re: KML Layers - Stack Order Wierdness.

2011-03-09 Thread Thomas Baxter
Thanks. Shows for me, and I am still waiting on designs for this, so once that's done I'll be building a KML parser to update the PolyStyles and image references. On Mon, Mar 7, 2011 at 8:09 PM, geocode...@gmail.com wrote: > On Mar 7, 4:23 pm, Thomas Baxter wrote: > > You

Re: [Google Maps API v3] Re: KML Layers - Stack Order Wierdness.

2011-03-07 Thread Thomas Baxter
for picking that up though, I totally missed it. I'll post a follow up with full code once its done. On Mon, Mar 7, 2011 at 6:38 PM, geocode...@gmail.com wrote: > On Mar 7, 1:21 pm, Thomas Baxter wrote: > > The following links have two different orders (the order by which they >

Re: [Google Maps API v3] Re: KML Layers - Stack Order Wierdness.

2011-03-07 Thread Thomas Baxter
IE6 is below my support level, and this is (obviously) initial functional dev. Regardless, I've closed off the doc. On Mon, Mar 7, 2011 at 5:19 PM, geocode...@gmail.com wrote: > On Mar 7, 1:21 pm, Thomas Baxter wrote: > > The following links have two different orders (the order

Re: [Google Maps API v3] Re: KML Layers - Stack Order Wierdness.

2011-03-07 Thread Thomas Baxter
at 3:35 PM, geocode...@gmail.com wrote: > On Mar 7, 12:02 pm, Thomas wrote: > > So, I'm having a real dilly of a pickle of a problem getting KML > > layers to stack properly. > > > > I have a varied group of overlays which I want to render: Polygons, > > Poly

[Google Maps API v3] KML Layers - Stack Order Wierdness.

2011-03-07 Thread Thomas
So, I'm having a real dilly of a pickle of a problem getting KML layers to stack properly. I have a varied group of overlays which I want to render: Polygons, Polylines and Markers. I hunted through the groups and found this - http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thr

[Google Maps API v3] Google Map can't be dragged on Qt Webkit based browsers.

2011-01-29 Thread Thomas Mansencal
Hello, I'm having an issue with Google Map and QtWebkit : Browsers using the Qt Webkit Port are unable to drag nor zoom into the Google Map. Apparently it's coming from Google Map side : https://lists.webkit.org/pipermail/webkit-qt/2010-November/000974.html Looks like it's giving you a multi-touc

[Google Maps API v3] Empty map

2010-12-28 Thread Thomas Leplus
Hello everyone, I am trying to migrate my simple map to the v3 API and I am having some issues: all I get (at least in Firefox 3.6) is a empty box with nothing in it. If someone would be kind enough to have a look, here is a live link: http://www.leplus.org/visitors/ Thank you in advance for y

[Google Maps API v3] Re: Street View: Sluggish performance on iPad

2010-12-02 Thread Thomas Winkler
> We are aware of some performance issues on the iPad/iPhone and they being > addressed. Great, any info on when this will be fixed? Thanks, Thomas -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to

[Google Maps API v3] Re: Street View: Sluggish performance on iPad

2010-11-18 Thread Thomas Winkler
Both on iPad. If you load 360cities on iPad it has a HTML fallback. -- 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, sen

[Google Maps API v3] Street View: Sluggish performance on iPad

2010-11-18 Thread Thomas Winkler
tching a full-screen panorama from 360cities.net is very fast and smooth. Why is there such a big difference in performance? Is there a way to optimize Street View to make it a bit more responsive? Thanks, Thomas -- You received this message because you are subscribed to the Google Groups "G

[Google Maps API v3] Re: Different Data: maps.google.com versus Maps API

2010-11-15 Thread Philip Thomas
Sorry, Larry, I linked to two images that didn't make it: maps.google.com https://lh3.googleusercontent.com/_g-guEkaskhs/TOFx26Na5ZI/AR8/q2pmDxeHcRo/maps-google-com.gif Google Maps API https://lh3.googleusercontent.com/_g-guEkaskhs/TOFyV46W5kI/ASQ/FwSkiI17CqM/google-maps-api.gif

[Google Maps API v3] Different Data: maps.google.com versus Maps API

2010-11-15 Thread Philip Thomas
Although my client has corrected some of their building data in maps.google.com, inaccurate data is still displaying using the Google Maps API. This doesn't make sense because both maps are coming from Google's data set (and not Tele Atlas or NAVTEQ). maps.google.com Google Maps API Does

Re: [Google Maps API v3] Re: dynamic updating

2010-11-11 Thread Alan Thomas
How many markers? Around 50. How far do they go? They go across a screen width, and then are deleted. Others are created to replace them. The map, in the background, is actually static. Thanks, Alan -- You received this message because you are

[Google Maps API v3] dynamic updating

2010-11-10 Thread James Thomas
Before I delve into Google Maps, I was wondering if anyone here has used it with dynamically updating markers on it, e.g., once per second. My application is showing moving icons (markers) on a map. Is Google Maps worth trying for this? Thanks, Alan -- You received this message because you are

[Google Maps API v3] Re: Problems with more than 26 polygons

2010-08-13 Thread thomas
thanks. how can I solve the KML unique URL limitation? is there a workaround? On Aug 13, 3:15 pm, "geocode...@gmail.com" wrote: > On Aug 13, 4:16 am, thomas wrote: > > > Hi, > > > I have a problem to show more than 26 polygons at the same time. > > With

[Google Maps API v3] Problems with more than 26 polygons

2010-08-13 Thread thomas
showing polygons or loading kml files? thanks Thomas -- 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

[Google Maps API v3] Remove marker problem

2010-08-11 Thread Thomas
here: https://docs.google.com/document/edit?id=1NRLo04HQaaly0cTqK61MATnvHDdBFi9WUE-ARcBF5Po&hl=en Thanks in advance. Cheers, Thomas -- 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

[Google Maps API v3] Building a fictional map from scratch.

2010-07-03 Thread Chris Thomas
I seem to be snared right from the get go. How would I code and impliment a simple 10 x 10 coordinate plane? -- 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

Re: [Google Maps API v3] Can you change a Markers icon onDrag?

2010-06-02 Thread Thomas Hynard
Thanks. That is what I was after. On Wed, Jun 2, 2010 at 3:09 PM, Ben Appleton wrote: > On Wed, Jun 2, 2010 at 3:04 PM, Toemouse wrote: > > I wanted to change the icon for a markers whilst it is being dragged. > > Is this possible? > > Yes. You can change the marker's icon by calling > marker