[Google Maps API v3] Enable dragzoom problems, src ?

2011-02-03 Thread Thoern
I have a map with some markers in V3. Anyhow when triying to incorporate the dragzoom it seems it cant find my src to the javascript. I´ve tried to point it out locally too but same result. At first I thought it was some "cross domain scripting" issue, but now I am just confuised.. my source for i

[Google Maps API v3] Re: Enable dragzoom problems, src ?

2011-02-03 Thread Thoern
aahh, that was it! thanks :-) -- 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+unsu

[Google Maps API v3] Adapt for Phones

2011-02-10 Thread Thoern
Hi How would you guys adapt something like this for a Android or Iphone? http://chalmersmotorklubb.se/google/MinGoogleKarta.htm I have seen this emulator for example, http://iphonetester.com/ but I guess it does not take into considderation the graphic rendering performance of the phone, only the

[Google Maps API v3] Re: WebGL for Google Maps API v3

2011-02-10 Thread Thoern
Hi Radiante I have no info about Chrome, but you should try out firefox v4.0 (beta) It uses GPU hardware acceleration for graphics rendering, I found a huge performance increase from IE7 when rendering large groups of markers. Chers//Martin -- You received this message because you are subscribed

[Google Maps API v3] Mapwindow coordinates?

2011-02-18 Thread Thoern
How is the best way to go about fetching the current mapwindows coordinates? (Xmin, Ymin Xmax, Ymax) -- 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. T

[Google Maps API v3] Re: Marker lat long from a search result

2011-02-18 Thread Thoern
I use the markers array values var locations= [ ['Some text','something else',57.6845, 11.9148,1], in this case to get the cords for the 1st one. alert(locations[1][2] locations[1][3])); -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Thoern
yes, if you search markers for example you can use whatever in the markers array to be displayes wherever you want in a page using javascript. On 18 Feb, 08:59, nat wrote: > Is it possible to show search result on map as well as textual result > below the map on the same page using Google Map AP

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Thoern
simply use som javascript and use the zoom to location map.setCenter(loc); I did like this.: http://www.chalmersmotorklubb.se/google/MinGoogleKarta.htm -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send

[Google Maps API v3] Re: Required Google Map API result on MAP as well as Text Search

2011-02-18 Thread Thoern
aha, seems like you wanted "Local Search " not do search on local data.. sorry, no clues about this in V3... -- 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@googlegroup

[Google Maps API v3] Re: Maximum number of Markers in a map

2011-02-20 Thread Thoern
next generation browsers use GPU hardware to render graphics in the browsers. If you have xp try the firefox v4.0 beta if you have alot af markers big difference (if you have some HP in the graphics card) Also W7 ie 9 and new the new chrome to come I beleve. -- You received this message because y

[Google Maps API v3] Re: Mapwindow coordinates?

2011-02-20 Thread Thoern
Good stuff! thanks :-) -- 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+unsubscr...

[Google Maps API v3] serach 3d Array using JQuery?

2011-02-25 Thread Thoern
I know you can search an array using the alert($.inArray("myWord", myArray)); but if there is a 3D array like in the locations /markers usally have. I would like to loop thrue the arrays "third" index values. But how do you write that, obviously I can not write "i" alert($.inArray("myWord", locat

[Google Maps API v3] Search 3d array

2011-02-25 Thread Thoern
I like to have a search on the locations array. I did one using a loop, but it is "exact " search so you have to write exactly the same as in the array for a hit. I would like a more "fyzzy search" that hits all containing that search.. for example search for 1 will hit values 1 A 1 B

[Google Maps API v3] Re: Search 3d array

2011-02-25 Thread Thoern
Maby one have to go with Regexp using javascript to acheive "SQL LIKE" functionality? or does JQuery support 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-v3@google

[Google Maps API v3] add "new functions" googlemaps.com

2011-03-07 Thread Thoern
Is it possible to add the Google maps labs "new tools" they have in the www.googlemaps.com in your own googlemap? -- 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@googleg

[Google Maps API v3] Re: add "new functions" googlemaps.com

2011-03-15 Thread Thoern
Anyone?? What I meen is these functions? https://lh3.googleusercontent.com/_wIuTN5ILEP4/TX9tlIerKzI/BzU/9MjCNR7jjeU/functions.JPG -- 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 goo

[Google Maps API v3] dynamicly pic a kml file?

2011-03-25 Thread Thoern
Is it possible to use javascript with a javavariable in the url to the kml layer to dynamicly point to the right kml layer as below? Or does the url to the KML file have to be set at pageload? var kmllayer; function gronytor(anl) { var url; url="http://blablabla/google/KML/";; url=url+anl+".KML"

[Google Maps API v3] Re: dynamicly pic a kml file?

2011-03-25 Thread Thoern
Ah, I got it, It works.. just had to remove the ' ' -- 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 goog

[Google Maps API v3] retrive clicked marker info?

2011-03-28 Thread Thoern
I have a array with markers but how do I get what index the clicked marker have? of one click on one of the markers in the map. -- 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-

[Google Maps API v3] Re: retrive clicked marker info?

2011-03-28 Thread Thoern
Its really like a basic tutorial example, storing the markers in a locations array, no funny buissness to it. http://www.chalmersmotorklubb.se/google/Example.htm -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this

[Google Maps API v3] Re: retrive clicked marker info?

2011-03-28 Thread Thoern
Is there some call or so in the API to check which index is selected once clicking a marker? -- 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 unsubsc

[Google Maps API v3] Re: retrive clicked marker info?

2011-03-29 Thread Thoern
Anyhow I thought of a different approach, googlemaps does only render the markers in current mapwindow right? can you fetch those array ids somehow ? or the coordinates of the markers? I would like to get the markers id for two purposes. (both ways) 1. to do some extra stuff (maby open a certain

[Google Maps API v3] Re: retrive clicked marker info?

2011-03-29 Thread Thoern
Thanks, there it was :-) Any Ideas to check which markers in current mapview? -- 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

[Google Maps API v3] Re: retrive clicked marker info?

2011-03-29 Thread Thoern
Ok, I am kind of stuck here, it seems markers have a method getVisible() that sounds usable for this purpose, anyhow tried to feed it som indexes from the marker array in 'bounds_changed' event Had hoped to get info like: 1 true 2 false 3 false sombody please point me in the right direction cant

[Google Maps API v3] Re: retrive clicked marker info?

2011-03-29 Thread Thoern
Solved.. -- 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+unsubscr...@googlegroups.

[Google Maps API v3] Multiple KML layer, preserveViewport problem

2011-03-30 Thread Thoern
I have multiple arrays to keep track of which kml to feed the map. Anyhow it run into problem when using preserveViewport =true. It works without preserveViewport set but jumps around the map :-( Also it works setting it to "true" when just using a single KML file.. But when assigning the arrayind

[Google Maps API v3] Re: Multiple KML layer, preserveViewport problem

2011-03-30 Thread Thoern
I´ll do tomorrow, its at a testenvoirment right now -- 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 goog

[Google Maps API v3] Re: Multiple KMLs & 414 Error Request-URI Too Large

2011-03-31 Thread Thoern
It worked, I had an the indexes for the arrays. -- 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-m

[Google Maps API v3] bogus KML urls?

2011-03-31 Thread Thoern
Then trying to close a kml file that is not existing on the webserver it crashes. Is there anyway to check wether a KML file is a valid one? using javascript or or V3 api or so? var KmlLayer=new A

[Google Maps API v3] Re: bogus KML urls?

2011-03-31 Thread Thoern
I know it can be done with serversida but are there any options? for example som kind of request to googlemaps? and if it leaves a certain value is is not a valid one? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to t

[Google Maps API v3] Re: bogus KML urls?

2011-03-31 Thread Thoern
solved, I found one thing that worked to check for: if (KmlLayer[i].getDefaultViewport()!= undefined) { -- 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

[Google Maps API v3] Re: Multiple KML layer, preserveViewport problem

2011-03-31 Thread Thoern
solved, it was simply a case of headworm. -- 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

[Google Maps API v3] Re: track flights on google map api v3

2011-04-01 Thread Thoern
Looks like openatc already done this in googlemaps on a asp website. http://www.openatc.com/gm.asp Then you can ask them how they did too :-) -- 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 API v3] Re: KML performance

2011-04-01 Thread Thoern
I splitted up my kml into small ones, then just keep track of what kml should be opened at the current view, like the idea with tiles but for kml. -- 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] Re: bogus KML urls?

2011-04-03 Thread Thoern
Sorry it first only appeard to be solved as all my kml ended up levaing undefined in the condition if (KmlLayer[i].getDefaultViewport()!= undefined) { So the KmlLayer[i].setMap(null); never executed :-( Looked at Piers examples and I think I found a similar issue in the "old_stylev3.htm" example:

[Google Maps API v3] Markers-->KML?

2011-04-04 Thread Thoern
If using a KML file instead of a markers array, is there some good practice to be able to search values in the KML file? As you can do with markers, then zoom to the marker you searched for. Also If I understand correctly once opened a KML in a google map the kml file becomes cached at googles ser

[Google Maps API v3] Re: dynamicly pic a kml file?

2011-04-06 Thread Thoern
kmllayer = new google.maps.KmlLayer(url); -- 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

[Google Maps API v3] Safari, iphone 4 style of info window from KML

2011-04-13 Thread Thoern
Funny thing when testing a htm file with a style with textsize etc it works fine for both markers and kml info windows when klicking objects in the map. The text in the infowindow is cleraly affected. Anyhow when trying the same webpage in a iphone w safari it only wokrs on markers info window. The

[Google Maps API v3] plugin for zooming to current location? iphone?

2011-04-15 Thread Thoern
If I dont feel like buying the developer kit from apple to get the current gps location, is there some option? maby an app or plugin that can be used by a webpage html file with a google maps map to show current position in the map? Safari does not seem to support the sensor feature. -- You recei

[Google Maps API v3] Re: plugin for zooming to current location? iphone?

2011-04-15 Thread Thoern
I have found a plugin called Quickconnect that ltes you grab the phone GPS position, great! Anyhow it seems not to be so good documentation about how to use it. http://quickconnect.sourceforge.net/browser/index.html It says you can retrieve the gps position by simply call findLocation() using jav

[Google Maps API v3] Re: Dynamically load kml files from directory and add toggle feature

2011-04-18 Thread Thoern
it seems there is a "limit" of about 10 layers or so, I did a different approach by checking the uses mapwindow, and only open up those kml layers in the view. I used a marker with id to check for kml "id" to open. You can also do the check for example at tiles loaded event. -- You received this

[Google Maps API v3] Re: Dynamically load kml files from directory and add toggle feature

2011-04-18 Thread Thoern
the limit i more like 15 layers.. chers//martin -- 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-

[Google Maps API v3] distance between points v3

2011-05-03 Thread Thoern
Found a post that stated one could extrace distance between 2 points by using distance = Math.sqrt((69.1*(cy-lat))*(69.1*(cy-lat))+(53.0*(cx-lng))* (53.0*(cx-lng))); however what is (point 1) (point 2) lan1,lon1 lan2,lon2 is that as below? distance = Math.sqrt((69.1*(lat1))*(6

[Google Maps API v3] Fullscreen map on iphone

2011-05-05 Thread Thoern
I struggle with getting the map into fullscreen without the "crome" (adress bar) (not to be confused with setting the map to 100% height/width) And in the Safari (5) you push up on the page up and the adressbar "removes" but as you have a map there it pans the map instead when googlemaps is in the

[Google Maps API v3] Re: Fullscreen map on iphone

2011-05-05 Thread Thoern
I found a script that is working, partly.. if (navigator.userAgent.indexOf('iPhone') != -1) { addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); } function hideURLbar() { window.scrollTo(0, 1); } It will hide the the url part but only if one removes the first sentence

[Google Maps API v3] Re: Fullscreen map on iphone

2011-05-05 Thread Thoern
I found a script that is working, partly.. if (navigator.userAgent.indexOf('iPhone') != -1) { addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); } function hideURLbar() { window.scrollTo(0, 1); } It will hide the the url part but only if one removes the first sentence

[Google Maps API v3] Re: Fullscreen map on iphone

2011-05-09 Thread Thoern
Did a whole lot of work on javascript until I found how to do it.. You can run a html webpage as a Webbapp within Safrari, then you can lose not only the url bar, but also the browser bar at the bottom that was so much better. :-) https://lh3.googleusercontent.com/_wIuTN5ILEP4/Tcfq_xx8gVI/

[Google Maps API v3] Fullscreen infowindow?

2011-05-09 Thread Thoern
is there some way to have the infowindow bubble a fullscreen window instead when klicking a kml file with info? -- 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@googlegro

[Google Maps API v3] Clear Google Cache KML files?

2011-05-09 Thread Thoern
Looked for some way to clear the cashed file at google when one have opened a kml file. Is there some other way than renaming the file like below? If you remove the file on the server and then open the kml is the cashe removed then? to append a parameter to the url that changes everytime you re

[Google Maps API v3] Re: Clear Google Cache KML files?

2011-05-10 Thread Thoern
A quick hack was to just rename the kml folder and setting the path in the html file to the new folder name. Geoxml is that compatible w safari? maby woth looking into instead. But since I can export from MapInfo and have all info in the kml intact its pretty nice. My thingy works pretty nice on an

[Google Maps API v3] Re: Google Maps API marker image not visible on mobile device when below 55px

2011-05-10 Thread Thoern
Hi you could test storing at a local server currentMarker.setIcon("images/MyImage.png"); currentMarker.setMap(map); it might be some browser specific issue. There are an online picture resizer that works great if u google on it, I used it to get iphone webb app picture to 57x57px -- You receiv

[Google Maps API v3] Style KMLs KmlFeatureData Bubble?

2011-05-11 Thread Thoern
Try to style the KMLs info bubbles text as the bubble itself becomes smaller than the table generated. (The table sticks out of the bubble) This seem to only happen in safari browser, in mozilla it looks ok. Tried sth like below in the html map file: infoWindowHtml { height: 100%; font-family:Ari

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

2011-05-17 Thread Thoern
or you can rely on raw power and just use regular markers if you know all the users has some HP computers :-) If using one of the new browsers (firefox v4 for example) and a quick computer C2d or better its not a big problem with a 1000+ markers. Tried one with my homecomputer with Phenom 6core pr

[Google Maps API v3] set polygon ontop KML layer?

2011-05-20 Thread Thoern
I use a draw polygon by insertin nodes as below. But when having a KML layer in the map the KML layer is ontop the polygon.. How do you change to make the polygon sit ontop the KML? Is it just a question of creating a new instance of the kml layer BEFORE the polygon in the "Initialize map functio

[Google Maps API v3] Re: set polygon ontop KML layer?

2011-05-23 Thread Thoern
Here is an example: The polygons created end up below the KML. Anybody have any ideas to set the newly created polygon ontop of KML? EXAMPLE: 1 klick in the map to add a node 2 klick on a node to remove it 3 drag a node to move a node. http://www.chalmersmotorklubb.se/google/draw.htm -- You r

[Google Maps API v3] Re: Introducing the Map Label utility library

2011-05-24 Thread Thoern
Good work! that is a great funcionality -- 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-a

[Google Maps API v3] Re: set polygon ontop KML layer?

2011-05-24 Thread Thoern
there we go, it was just an issue af running a polygon.setmap(map) at the right sequence Did not think it was as simple as that. -- 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

[Google Maps API v3] KMLLayer.tilesloaded?

2011-05-25 Thread Thoern
I wonder if there is some way of checking or if there is some event one can use to se wether kml layer has been loaded? The problem is still this, http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/25fc522340a62f1f/57c1e81b08282665?hl=sv#57c1e81b08282665 as if one have a

[Google Maps API v3] Re: KMLLayer.tilesloaded?

2011-05-25 Thread Thoern
correction, it should be: the kml render AFTER the polygon.setmap(map) if slow internet connection... -- 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. T

[Google Maps API v3] Re: KMLLayer.tilesloaded?

2011-05-25 Thread Thoern
Sorry didnt find that one thanks! //M On 25 Maj, 13:53, Rossko wrote: > > I wonder if there is some way of checking or if there is some event > > one can use to se wether kml layer has been loaded? > > You could search previous posts, > examplehttp://groups.google.com/group/google-maps-js-api-v3

[Google Maps API v3] Re: GSM based Geocoding

2011-05-25 Thread Thoern
http://code.google.com/intl/sv-SE/apis/maps/documentation/javascript/basics.html#Geolocation -- 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 unsubs

[Google Maps API v3] navigate to functionality from app

2011-09-07 Thread Thoern
is it possible to get navigation functionality using the java v3 api you can find in the android telephones "app" version of google maps.? like -"turn right in 200 meters" -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post

[Google Maps API v3] integrate navigation in googlemaps v3 api?

2011-09-11 Thread Thoern
is it possible to get an android phone to navigation mode when from a google maps map using the v3 api? -- 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.

[Google Maps API v3] Re: navigate to functionality from app

2011-09-15 Thread Thoern
Ok, I know one can get the "route" in the map from 2 points or more, set it to different traveltype: walking, car etc and it use the car road and for determine the network route and so on, but what I aim for is if can you pass start -end params to and have a web v3 googlemap turn into the "native g

[Google Maps API v3] Ajax functionality when using KML files??

2011-12-15 Thread Thoern
Is there some way to render KML ajax like built in maby in the geoxml3 parser or so? (only open up/render data that is currently within the map) -- 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 t

[Google Maps API v3] Re: Ajax functionality when using KML files??

2011-12-20 Thread Thoern
Hi Chad! With ajax technology I mean one solely open up data that are in the mapview, the rest is ignored.. I have a lot of data, that is the problem, so I have sofar written a rough mimic of Ajax myself instead to be able to handle the data in Googlemaps. Splitting up the data into many kml files

[Google Maps API v3] Re: Ajax functionality when using KML files??

2011-12-21 Thread Thoern
Thanks for the tip, I looked into this, but it seems when importing KML to fusion one loses all the tematisation/colorisation. Since I have all tematisation in the KML files (export from GIS program) telling each polygon wich color to have it falls on that. :-( or is this possible somehow to import

[Google Maps API v3] Re: Ajax functionality when using KML files??

2011-12-21 Thread Thoern
also It does not seem to import all the data!? I get stuck with "C:\temp\MyTest.KML (5% imported) " even though the size is not so big. tried a kml file with only 1.9MB -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post t

[Google Maps API v3] Select multiple in _FT query javascript styling

2012-02-14 Thread Thoern
Hello, how do I select multiple "types" to have the same style when setting a style in a Fusion table. Tried as below where: "'description' = 'asphalt','stones','wood' ", where: "'description' in ( 'asphalt','stones','wood') ", where: "'description' = 'asphalt' or 'description' = 'stones' or

[Google Maps API v3] Style multiple types with one query Style Fusion Tables

2012-02-14 Thread Thoern
Hello, how do I select multiple "types" to have the same style when setting a style in a Fusion table. Tried as below where: "'description' = 'asphalt','stones','wood' ", where: "'description' in ( 'asphalt','stones','wood') ", where: "'description' = 'asphalt' or 'description' = 'stones' or '

[Google Maps API v3] iOS 6.0 and googlemaps webapp?

2012-10-29 Thread Thoern
Using the javascript 3,0 api in a iphone webapp map. All worked great on iOS <5.1.1 when upgrading to iOS 6.0 it wont even startup the map in ios 6.0. It uses geolocation and I have tried setting the app priviligies/settings to "allow position" everywhere I could find without any luck. Anyone el

[Google Maps API v3] stack overflow?????

2014-04-08 Thread Thoern
I see a post with important noptice that the forum for technical questions regarding Maps v3 api moved to "stack overflow" What does that mean? If one google stack overflow you get alot of results regarding the error message "Stack overflow" Very confusing. Try posting a link to the new for

[Google Maps API v3] "Data may still be loading" issue

2014-04-08 Thread Thoern
Tried my googlemap v3 map with some fusion tables in it, havent used it for a while. Now almost nothing comes up, it only say "Data may still be loading, Drag or refresh page to find out" Checked internetconnection and its fibre and about 70-80Mbit/s. http://www.chalmersmotorklubb.se/google/mobil

[Google Maps API v3] Re: stack overflow?????

2014-04-08 Thread Thoern
Den tisdagen den 8:e april 2014 kl. 10:10:05 UTC+2 skrev Thoern: > > I see a post with important notice that the forum for technical questions > regarding Maps api moved to "stack overflow" > Does this affect th Javascript V3 APi forum? if not why is this information

[Google Maps API v3] Stack overflow??

2014-04-08 Thread Thoern
I see a post with "important notice" that the forum for technical questions regarding Maps api moved to "stack overflow" Does this affect this forum ? the Javascript V3 APi forum? if not why is this information in here? It will only confuse. Also if you google "Stack overflow" you get alot o

[Google Maps API v3] Whats going on with the Markers??

2016-05-16 Thread Thoern
I have a Google map that uses the Googlemaps V3 API and uses a locations array with a bunch of markers. The map have been working for years without any problem. All of a sudden the markers do not show up in the map. Also the items do not show up in my "Select option" list to the left. Is there s

Re: [Google Maps API v3] Whats going on with the Markers??

2016-05-16 Thread Thoern
of the >> library, rather than jsut linking to the Googel hosted one) >> >> >> >> >> On 16 May 2016 at 12:26, Thoern > wrote: >> >>> I have a Google map that uses the Googlemaps V3 API and uses a locations >>> array with a bunch of mark

[Google Maps API v3] GEOLOCATING NOT WORKING after Safari iOS 10.0.2

2016-10-20 Thread Thoern
I have a webapp which uses javascript V3 api. After upgrading to ios 10.02 it does not help to change security settings for Safari to allow positioning in integrety settings. What I´ve heard Safari stoped allowing geolocation from a page that is not in SSL (Sequre protocol). (Same in Chromes lat

Re: [Google Maps API v3] GEOLOCATING NOT WORKING after Safari iOS 10.0.2

2016-10-20 Thread Thoern
Thanks for info! This must be a pretty big problem around, suddenly you can't position your self in a map without HTTPS, I think its ridiculous and a wast of many peoples time. Maby there is some workaround some other browser to be used on iphones that support Geolocation on a regular http

[Google Maps API v3] Re: GEOLOCATING NOT WORKING after Safari iOS 10.0.2

2016-10-27 Thread Thoern
startad = true;} }); /* google.maps.event.addListener(map, 'dragend', function () { if ((gronOn == true) || (vinterOn == true)) { testArr(); } }); */ The map is at https://lf-webbapp.goteborg.se/ Den torsdag

Re: [Google Maps API v3] Re: GEOLOCATING NOT WORKING after Safari iOS 10.0.2

2016-10-27 Thread Thoern
aha, I figured it was some sequence issue. Did not really get what the ascync params in the src really did. Chers//M Den torsdag 27 oktober 2016 kl. 13:46:39 UTC+2 skrev barryhunter: > > >> https://lf-webbapp.goteborg.se/ >> > > When I try that url the javascript console displays > > js?...:9