[Google Maps API v3] get the right distance in DRIVING/WALKING mode?

2010-05-28 Thread en4ce
is it possible to get the right distance in DRIVING/WALKING mode ? if yes, how to do it? -- 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 unsubscrib

[Google Maps API v3] Re: Saving google map in some manners

2010-05-31 Thread en4ce
Hi sangi step 1 store the cords (latlng) in a database step 2. render a kml file out of the stored cords or render the file directy without store the data in both cases you´ll need that kml file take a look on the kml reference p.s. dont go with staticmaps :-P maybe try something easy like th

[Google Maps API v3] Re: remove icons KML

2010-05-31 Thread en4ce
what icons ? icons are generated within the api and not in a kml file ... (atleast in V2, iam a bit unsure here) source ? On 31 Mai, 12:11, Santiago Nieto Carrera wrote: > Please, any idea? > > On 27 mayo, 17:35, Santiago Nieto Carrera > > wrote: > > Hi: > > > I want to load a KML file and not

[Google Maps API v3] Re: Difference in Results

2010-05-31 Thread en4ce
as far as i saw is no distancesFrom function in V3 atm (or is there now?) might try this here: google.maps.LatLng.prototype.distanceFrom = function(newLatLng) { var R = 6371000; // m var lat1 = this.lat(); var lon1 = this.lng(); var lat2 = newLatLng.lat(); var lon2 = newLatLn

[Google Maps API v3] Re: Saving google map in some manners

2010-06-01 Thread en4ce
t; > The application I'm working already uses Google Map API. > I was asked to extend this application, adding a button for saving as > an image map currently displayed in the browser. > > So I wondered if it were possible, and how it is. > > Thanks again for any replies. &g

[Google Maps API v3] Re: Maximo Zoom

2010-06-02 Thread en4ce
pardon ? why not just write in english? On Jun 2, 8:23 pm, LUIS TARZIA wrote: > Hola a todos,como se puede saber con la api 3 el maximo nivel de zoom > de una coordenada ? > Eso era muy bueno en la V2 que uno sabia hasta donde daba el zoom para > evitar el mensaje de "no tiled " cuando se sobrepa

[Google Maps API v3] Re: FYI: Just updated version 3.1 (2010/06/02)

2010-06-02 Thread en4ce
so

[Google Maps API v3] Beefy in V3?

2010-06-06 Thread en4ce
Hi everyone i just stumbled over the G_SATELLITE_3D_MAP in the earth plugin and i wondered if there is a roadmap to make that maptype available in the V3 api same as seen here: http://earth-api-samples.googlecode.com/svn/trunk/demos/mapsapi/beefy.html i think that would be a very nice extra to t

[Google Maps API v3] Re: Beefy in V3?

2010-06-06 Thread en4ce
llingsworth > > On Jun 6, 2:12 pm, en4ce wrote: > > > Hi everyone > > > i just stumbled over the G_SATELLITE_3D_MAP in the earth plugin and i > > wondered if there is a roadmap to make that maptype available in the > > V3 api same as seen > > here:

[Google Maps API v3] Re: Two types of icon images to display at the same time

2010-06-08 Thread en4ce
i dont see any icons set in that kml nor in the js file... what kind of kml style is that anyway ? i thought kml allways look something like: " http://earth.google.com/kml/2.0"; xmlns:atom="http:// www.w3.org/2005/Atom"> My Tracks running on Android " .etc On 8 Jun., 16:13, Paul wrote: > Hi

[Google Maps API v3] Re: Two types of icon images to display at the same time

2010-06-08 Thread en4ce
ok my bad... i didnt saw the source :D On 8 Jun., 16:56, en4ce wrote: > i dont see any icons set in that kml nor in the js file... what kind > of kml style is that anyway ? i thought kml allways look something > like: > > " > http://earth.google.com/kml/2.0"; >

[Google Maps API v3] Re: Two types of icon images to display at the same time

2010-06-08 Thread en4ce
nd then ignores the icon in the second kml file. The kml is > output from a tool in ArcGIS and the only control I have is over the > html that I want in the info window. > > Maybe I just need another way to convert to kml. > > On Jun 8, 11:16 am, en4ce wrote: > > > ok my b

[Google Maps API v3] Re: Help! $25.00 for the first person to fix it. Safari issues with video in InfoWindow

2010-06-12 Thread en4ce
what about just put an IFRAME in the infowindow and load the video throu that ? On Jun 12, 7:15 am, Tyler wrote: > Thank you so much for responding.  That sounds super confusing.  I > think  I will just link it to a page with a video on it.  I hope they > fix this bug soon. > > Thanks again, > Ty

[Google Maps API v3] Re: Add different color Marker on Map

2010-06-12 Thread en4ce
just specify the icon ? var marker = new google.maps.Marker({ position: latlng, map: map, flat: true, title: "meh" draggable: false }) iconFile = 'http://maps.google.com/mapfiles/ms/icons/green-dot.png'; marker.setIcon(iconFile) On Jun 12, 7:55 am, hu

[Google Maps API v3] Re: Map not updating after marker changed

2010-06-14 Thread en4ce
i would not work with visible, try use that functions for ya function hideMarkers(){ for (var i = 0; i < markers.length; i++) { markers[i].setMap(null); } } function showMarkers(){ for (var i = 0; i < markers.length; i++) { markers[i].setMap(map); } } On 14

[Google Maps API v3] Re: marker setPosition() blinking

2010-06-14 Thread en4ce
nope, i cant confirm that, iam still in blinkmode ;) On 14 Jun., 15:38, Nathan Raley wrote: > It appears that they resolved this over the weekend as I no longer have the > issue. > > On Sun, Jun 13, 2010 at 7:00 PM, Jeff McFadden wrote: > > > I've had the exact same issue, since 3.1 was released.

[Google Maps API v3] Re: Stupid Question about Scrollbars

2010-06-16 Thread en4ce
there are scrollbars if you see the marker in europe... iam not sure if there is a method to disable the scrollbars but making the infowindow bigger should resolve that problem anyway... just work on the size of the infowindow On 16 Jun., 08:51, Leonid Rozenblyum wrote: > I see no scrollbars ther

[Google Maps API v3] Delete a marker and Infowindow Jumps

2010-10-28 Thread en4ce
somehow, after the infowindow is closed, the map do a center to another position... now after a few hours trying to figure the problem out i ask for help... you can see the js file who handles all the stuff here: http://youspots.com/beta/conf/js/mapsapiconfV2.js any input is apreciated best

[Google Maps API v3] Re: Delete a marker and Infowindow Jumps

2010-10-28 Thread en4ce
rker and if that flag is set, ignore the event > (and reset the flag) in the matching event on the map. > > Chad Killingsworth > > On Oct 28, 10:19 am, en4ce wrote: > > > hi > > > i have 2 questions regarding erasing markers > > > 1. when i click a marker, am

[Google Maps API v3] Re: Delete a marker and Infowindow Jumps

2010-10-28 Thread en4ce
sorry, its fixed, i just forgot an ";" saved the file and went shopping :S my bad On Oct 28, 7:34 pm, Rossko wrote: > > you can test it online under:  www.youspots.com/beta, klick on Share > > Spots in the left menu and ... > > I get an error > "Parse error: syntax error, unexpected T_VARIABLE i

[Google Maps API v3] Re: Google Maps Geo-Autocomplete

2010-10-28 Thread en4ce
i have something "like" that on my page, check www.youspots.com/beta and click on share tracks... theres an input field what do´s that allmost simular... see the functions in the js file as well, its easy to implement On Oct 28, 8:17 pm, Barry Hunter wrote: > Thats not quite true. > > There is n

[Google Maps API v3] Re: Delete a marker and Infowindow Jumps

2010-10-28 Thread en4ce
hehe chad sometimes less is more (and i prefer that way anyway), i made my thoughts and tryed different methods, it works now, go check it out, ill do the format things tomorrow, thx for the help! (onclick/double click is bugged somehow) no clue why i used a href anyway cheers en4ce On Oct 28

[Google Maps API v3] Fluster and this[pb] is not a function problem

2010-11-15 Thread en4ce
Hi everyone, iam using Fluster 2.0.1.1 and i want to delete all the cluster created within fluster. a removeCluster Method is not included in the fluster release but someone included it, but it appears that this function did work sometime but not anymore. i spend over 1 h debugging everything but

[Google Maps API v3] Re: Fluster and this[pb] is not a function problem

2010-11-20 Thread en4ce
sadly no reply but i fixed the problem by just using: http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/docs/reference.html cheers, en4ce On Nov 15, 2:13 pm, en4ce wrote: > Hi everyone, > > iam using Fluster 2.0.1.1 and i want to delete all the cluste

[Google Maps API v3] Re: 11 different markers

2010-12-03 Thread en4ce
how about "marker.setIcon(iconForMarker);" ? On Dec 3, 2:57 am, "geocode...@gmail.com" wrote: > On Dec 2, 5:48 pm, Rednek wrote: > > > I am trying to put 11 different markers on my map. I know how to add a > > custom maker to map, but dont want same marker to show for every > > location. Here is

[Google Maps API v3] columnchart and opera

2010-12-25 Thread en4ce
Hi there i have a problem with the columnchart package in opera in ff/ie/ chrome/safari the columnchart/elevation chart works well i create the chart this way: var chart = null; google.load("visualization", "1", {packages: ["columnchart"]}); chart = new google.visualization.ColumnChart(docum

[Google Maps API v3] Re: Removing old markers before placing new ones

2010-12-25 Thread en4ce
if you want to erase all markers just do it like this: markers = the array with your markers for (var i in markers) { markers[i].setMap(null); } markers.setMap(null);should work as well -- en4ce On Dec 26, 2:34 am, "geocode...@gmail.com" wrote: > On Dec 25,

[Google Maps API v3] Re: columnchart and opera

2010-12-28 Thread en4ce
no idea guys ? On Dec 25, 1:48 pm, en4ce wrote: > Hi there > > i have a problem with the columnchart package inopera in ff/ie/ > chrome/safari the columnchart/elevationchartworks well > > i create thechartthis way: > > varchart= null; > google.load(&quo

[Google Maps API v3] Re: Help needed: Elevation Api for blogger website

2010-12-29 Thread en4ce
moin, eigentlich braust du nix mehr zu machen außer auf youspots.com zu gehen deine strecke anzulegen und die embed funktion zu nutzten! wie ich auch schon in deinem blog geschrieben habe werde ich den KML upload bald wieder einschalten so das das ganze für dich mehr sinn macht grüße aus dresden,

[Google Maps API v3] Re: Help needed: Elevation Api for blogger website

2010-12-29 Thread en4ce
sry for switch to german, iam unsure if that is alowed here anyway, would be nice if you send me an email and we talk a bit, i think your goal can be achived --> en4ce[at]gmx[dot]de On Dec 29, 7:29 pm, Kai Hoffmanns wrote: > Im Grunde dürfte es doch kein Problem sein das verwendete Skr

[Google Maps API v3] Re: How do you display a route on a map with the best zoom level

2011-01-15 Thread en4ce
try getbounds, it will automaticly get the right zoomlevel something like that : bounds = new google.maps.LatLngBounds(StartBoundsLatlng,EndBoundsLatlng); look up the docu, its fairly easy to implement On 15 Jan., 18:21, dipens wrote: > Hi, > > I call the Directions API (through PHP) - which re

[Google Maps API v3] Re: Light Box or Simular Pop Up (how to display lightbox image by click on more info link)

2011-01-17 Thread en4ce
how about create a div within the dom and just set the display to block ? i dont see a problem there ... On 17 Jan., 23:27, Fidencio Velasquez wrote: > El ene 17, 2011 2:23 p.m., "Spud" escribió: > > > > > > > > > Hi there > > > Developing a website where i am using the Google Maps API > > > I s

[Google Maps API v3] Re: Targeting Info Window X Close to stop Bounce

2011-01-17 Thread en4ce
might you create a custom infowindow and catch the close function in it as well... see this: http://gmaps-samples-v3.googlecode.com/svn/trunk/infowindow_custom/infowindow-custom.html within the code: var closeImg = document.createElement("img"); closeImg.style.width = "32px"; closeImg.s

[Google Maps API v3] Re: my map so slow? what is the poblem?

2011-01-19 Thread en4ce
use clusters! this will speed up your map significantly On 19 Jan., 08:11, gunk mahendra wrote: > i dont i understand what mean url? > thishttp://gunkm.brinkster.net/revisi.aspxmy map in upload when zoom slow > and load first the map so slow,..espcialy in ie 8 so slow you can check,.. > can you k

[Google Maps API v3] Re: my map so slow? what is the poblem?

2011-01-21 Thread en4ce
this topic get quite entertaining -- 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+

[Google Maps API v3] Re: v3: Multiple markers and InfoWindows?

2011-01-24 Thread en4ce
you can take a look here as well: www.youspots.com, the scripts are not secured or something, just look up the code On 24 Jan., 16:00, Paulo Fernandes wrote: > Hi > > Try to see the source code of the following link: > > http://www.pjtecnologia.com.br/maps/exemplos/lat-lng-address.html > > Where

[Google Maps API v3] Re: Loading info from Google Maps/Earth into a MySQL database

2011-01-24 Thread en4ce
jquery, ajax and javascript ? On 24 Jan., 21:00, Allan wrote: > Hi Folks, > > Do any of you know how a user could "click" on a location on Google > Maps/Earth and load information on the state, watershed, lat/long into > a MySQL database?  What coding or applications are available to do > this? >

[Google Maps API v3] Re: API and Opera

2011-01-24 Thread en4ce
as far as i noticed, the api works well with the api, just the custom cursor dont work for me check http://www.youspots.com in opera On 24 Jan., 18:30, Chad Killingsworth wrote: > On Monday, January 24, 2011 11:28:29 AM UTC-6, Martin wrote: > > > Check out the documentation: > > >http://maps

[Google Maps API v3] Re: API and Opera

2011-01-24 Thread en4ce
as far as i noticed the api works well with opera, just the custom cursor dont work for me check http://www.youspots.com in opera On 24 Jan., 18:30, Chad Killingsworth wrote: > On Monday, January 24, 2011 11:28:29 AM UTC-6, Martin wrote: > > > Check out the documentation: > > >http://maps.go

[Google Maps API v3] Re: V3 Removing a marker after clicking on it and updating the polilyne

2011-01-26 Thread en4ce
yep, its the only way to remove a marker On 26 Jan., 13:25, Paulo Fernandes wrote: > To remove a marker you are correct when you do that > > marker[i].setMap(null); > > Verify if the marker is an array and if the code is passing through this > part > > Paulo > Fernandeshttp://www.google.co

[Google Maps API v3] change width of Map, Hybrid, Satellite, Terrain button

2011-01-27 Thread en4ce
how does it work ? i created a custom button like that var osmMapType = new google.maps.ImageMapType({ getTileUrl: function(coord, zoom) { return "http://tile.openstreetmap.org/"; + zoom + "/" + coord.x + "/" + coord.y + ".png"; }, tileSize:

[Google Maps API v3] Re: change width of Map, Hybrid, Satellite, Terrain button

2011-01-28 Thread en4ce
not possible? guys anyone ? On 27 Jan., 18:38, en4ce wrote: > how does it work ? > > i created a custom button like that > > var osmMapType = new google.maps.ImageMapType({ >         getTileUrl: function(coord, zoom) { >                 return "htt

[Google Maps API v3] Re: change width of Map, Hybrid, Satellite, Terrain button

2011-01-28 Thread en4ce
8 Jan., 14:43, Paulo Fernandes wrote: > You can add a overlay button with an action to change de mapType > > Paulo > Fernandeshttp://www.google.com/profiles/paulofernandesjrhttp://twitter.com/paulofernandesj > +55 11 9797-5974 > > > > > > > > On Fri, Jan 28, 2011 a

[Google Maps API v3] Re: change width of Map, Hybrid, Satellite, Terrain button

2011-01-28 Thread en4ce
rstand me? > > > Paulo > > Fernandeshttp://www.google.com/profiles/paulofernandesjrhttp://twitter.com/pau... > > +55 11 9797-5974 > > > On Fri, Jan 28, 2011 at 2:22 PM, en4ce wrote: > > > erm, paulo, i did that you might check my page,http://youspots.com >

[Google Maps API v3] Re: How to stop animation?

2011-01-29 Thread en4ce
wow, thats very buggy, not only if you zoom the polyline dont get resized and the pause button dont work (at least in chrome)na it even api V2...wtf? On 29 Jan., 17:44, mackopu wrote: > OK. Finally I solved it as follows: > >   var dd = 0; > >   function animate(d) { >     ... >     dd =

[Google Maps API v3] Re: Powered by Google Technologies

2011-01-31 Thread en4ce
its nice that you use different marker icons for different zoom levels, but still i would suggest to use clusters 1 question, how you realized the resizing of the infowindows? On 31 Jan., 07:19, Chris Broadfoot wrote: > Cool. > > Although, just from panning around a little bit, I got an alert: >

[Google Maps API v3] Re: Powered by Google Technologies

2011-01-31 Thread en4ce
limit. API docs say that > for most users and usages this shouldn't happen, but since it does I > will look into this issue again. > > @en4ce- thanks for your feedback. Actually we don't use different > icons for different zoom levels. When you zoom out what you see is a &g

[Google Maps API v3] Re: Powered by Google Technologies

2011-02-01 Thread en4ce
thx for the info =) On 1 Feb., 07:47, Mike wrote: > @Andrew - I agree, this is probably what has happened > > @Chris - I currently geocode on 'dragend' - do you recommend changing > this? > > @en4ce - with Google Fusion Tables you basically use the standard >

[Google Maps API v3] Remove multiple circle

2011-02-02 Thread en4ce
hi guys... i want to remove multiple circles on my map but so far i have no success with it :/ circle.setMap(null) works well with just one circle this: if(circle != null){ for (var i in circle) { circle[i].setMap(null) } } throughs an exception: Uncaught TypeError: Object # has n

[Google Maps API v3] Re: Remove multiple circle

2011-02-02 Thread en4ce
to access circle[i] it may be > pulling out a part of that object, which part does not have the method > setMap.  Hence the error, maybe.) > > You could try creating variable circle as an array, then in a loop > assign circle[i]= new google.maps.Circle(.) > >

[Google Maps API v3] Re: Add listner on map API V3

2011-02-03 Thread en4ce
try something like that google.maps.event.addListener(map, 'click', function(event) { addMarker(event.latLng); }); function admarker(latLng){ var marker = new google.maps.Marker({ position: latLng, map: map, title: "blub",

[Google Maps API v3] Re: Add listner on map API V3

2011-02-03 Thread en4ce
try something like that google.maps.event.addListener(map, 'click', function(event) { addMarker(event.latLng); }); function addMarker(latLng){ var marker = new google.maps.Marker({ position: latLng, map: map, title: "blub", b

[Google Maps API v3] Re: Add listner on map API V3

2011-02-07 Thread en4ce
you add listeners in your init function, yours is named: function load() so just do like that to add any listeners: function load() { --> yourcode google.maps.event.addListener(map, 'click', function(event) { addMarker(event.latLng); }); } function addMarker(latLng){ var marker = new goog

[Google Maps API v3] Re: Add listner on map API V3

2011-02-07 Thread en4ce
its not great but it works :-P (dont try IE^^) cheers On 8 Feb., 00:04, John wrote: > Rossko/en4ce, > > Thanks a lot it works now!!! It took me days trying and you guys discover it > in 20 minutes.. > > Well I struggle on now with trying to store

[Google Maps API v3] Re: Map Type Control Style

2011-02-08 Thread en4ce
same here... and where is my hybrid layer button ? On 8 Feb., 08:39, pi5701 wrote: > there are some styling issues in german language: > if you select satellite view, 'beschriftung'-checkbox is added at bottom of > the dropdown that exceeds the width of the dropdown and becomes 'beschriftu' > o

[Google Maps API v3] Re: Info box attached to marker, open on page load - How can I do this?

2011-02-08 Thread en4ce
this works for me: function initialize() { var latlng = new google.maps.LatLng(36.242439,139.424304); var opt = { center:latlng, zoom:14, mapTypeId: google.maps.MapTypeId.ROADMAP, disableAutoPan:false, navigationControl:true,

[Google Maps API v3] Re: Error in markermanager.js V3

2011-02-09 Thread en4ce
you should make sure that there is a marker on that map befor call vindallmarkers.addMarkers(vindmarkers,0,17); because the error i get look like that bounds is empty... just a fast guess On 9 Feb., 16:09, Nico Oudshoorn wrote: >  Click for this > page:http://www.meerijden.nu/allerittenmaps2V3.

[Google Maps API v3] Uncaught TypeError: Cannot read property '__e3_' of null in chrome - ff/opera/safari is ok

2011-02-10 Thread en4ce
orked some bits there, but mainly this. try{ this.prevZoom_ = map.getZoom();//this.map_.getZoom(); // yes the map seems accessible there }catch (er) { this.prevZoom_ = 10; } because sometimes this was throwing an error cheers en4ce -- You received this message because you are subscribed to

[Google Maps API v3] Re: Uncaught TypeError: Cannot read property '__e3_' of null in chrome - ff/opera/safari is ok

2011-02-11 Thread en4ce
thx broady i know the code is kinda messy, someone will have some fun with restructure everything... ok, ill look up the mc = new MarkerClusterer(map, markersFromDb, mcOptions); thanks On 11 Feb., 01:51, Chris Broadfoot wrote: > Actual page for anyone else > debugging:http://www.youspots.com/

[Google Maps API v3] Re: loading message for big kml

2011-02-14 Thread en4ce
"kml load listener" sure explain it all for ppl who actually understand but, why not help viva a bit out more because such search results as these often dont help at all (like the 1st...) On 14 Feb., 20:42, Rossko wrote: > > I'm loading on a google maps, a kml that is relative heavy with a load >

[Google Maps API v3] Re: Problem with GoogleMaps API v3

2011-02-15 Thread en4ce
what you want to do? add a marker? just center the map? link? On 15 Feb., 21:06, "geocode...@gmail.com" wrote: > On Feb 15, 9:10 am, rbotella wrote: > > > > > > > > > > > Hello, > > >  I have to change to GoogleMaps API  v3 but I have the addresses of > > the form: > > >  "38.820468, -0.601931"

[Google Maps API v3] Re: 2 problems

2011-02-19 Thread en4ce
sorry but your page just work in ff for me :/ chrome show a white window, nothing else... On 19 Feb., 23:01, Alon Sandak wrote: > u must approve the geolocation , thats the idea of the application , to find > your location and places around u . > > i work's fine under chrome , firefox and IE . bu

[Google Maps API v3] Re: Need to add google maps in local iframe page

2011-02-21 Thread en4ce
THIS: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/2b3f101fd509919e# On 21 Feb., 10:41, datta rajesh wrote: > Hi, > > I need to add google maps home page in my iframe page.In google map page I > should not show top options like web,images,map. > If you see the source

[Google Maps API v3] Re: Manipulating my String of markers

2011-02-21 Thread en4ce
map.setCenter(lat, lng); cant work because because these are not google.maps.LatLng´s do like : mylatlng = new google.maps.LatLng(lat, lng); map.setCenter(mylatlng); On 21 Feb., 11:49, Rick Donohoe wrote: > Hi guys, > > Site:www.my-walk.com/addwalk.php > > I have a method which takes a string

[Google Maps API v3] Re: How to save geolocations?

2011-03-03 Thread en4ce
function addmarker(){ // add the marker document.getElementById("hiddenfield").value = position.coords.latitude + "," + position.coords.longitude ? } On 3 Mrz., 22:21, Soluphia wrote: > function getinfo() > { >                 //document.getElementById("alerts").value = > (position.coords.l

[Google Maps API v3] Re: How to save geolocations?

2011-03-04 Thread en4ce
maybe try to write the values with jquery into the hidden field, i dont see an error on these lines, but i guess its a timing problem, you can try to set a "setTimeOut", 200ms should be ok and test if the vaules are then in the hidden field as well... On 4 Mrz., 17:31, Soluphia wrote: > Thanks fo

[Google Maps API v3] Re: ProjectedOverlay animation

2011-03-04 Thread en4ce
how you change it ? like img.src = '' or div.innerHMTL = ''? On 4 Mrz., 15:16, bernat wrote: > Hi folks, > > I'm working with the library ProjectedOverlay. > I'm trying to create an animation and what I'm trying to do is change > the src of the image contained by the div attribute. > The ProjectO

[Google Maps API v3] Re: How To add coordinates to tooltip of a marker?

2011-03-07 Thread en4ce
never mind V2 apps you can use this as example http://code.google.com/intl/en/apis/maps/articles/phpsqlajax_v3.html On 7 Mrz., 09:55, thebit wrote: > That's an example made in jQuery but, unluckly, with google maps V2 > (deprecated):http://www.designing4u.de/2008/08/google-maps-jquery-and-xml-s

[Google Maps API v3] Re: Including places in maps api??

2011-03-08 Thread en4ce
i would be interessted as well, i searched too some while ago and found this: http://code.google.com/intl/en/apis/maps/documentation/places/ [JSON] this: https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=50&client=clientId&sensor=true_or_false&signature

[Google Maps API v3] Re: Having street names on by default for Satellite View

2011-03-10 Thread en4ce
change the mapTypeId: google.maps.MapTypeId.SATELLITE, to mapTypeId: google.maps.MapTypeId.HYBRID, On 10 Mrz., 09:29, Ice wrote: > Sorry to see where I'm using this you can go > herehttp://www.dining-out.co.za/member_details-MemberID-3104.html -- You received this message because you are subsc

[Google Maps API v3] Re: draging the map

2011-03-10 Thread en4ce
what about lay some div´s with 1px width over the map? On 10 Mrz., 19:07, "geocode...@gmail.com" wrote: > On Mar 10, 9:57 am, Rossko wrote: > > > > I cannot post a link of what I am doing but I can attach the code if you > > > like as soon as I get home. > > > Can if you like, I won't look at it

[Google Maps API v3] Re: 2011/3/11 - New Release

2011-03-11 Thread en4ce
here an example: http://code.google.com/intl/de-DE/apis/maps/documentation/javascript/examples/layer-panoramio.html dont miss the http://maps.google.com/maps/api/js?sensor=false&libraries=panoramio <-- On 10 Mrz., 23:11, "Luke (Google Employee)" wrote: > Hi all, > > A new version of the Maps A

[Google Maps API v3] Re: "useStaticMap:false" option is not working

2011-03-11 Thread en4ce
yeah, google staff members tell all the time that you should not use undocumented features, so might it come back, might not On 11 Mrz., 16:00, bratliff wrote: > I am trying to suppress the hidden static map at: > >     maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage > > The undocume

[Google Maps API v3] Re: zooming when infopage visible does not zoom with marker

2011-03-11 Thread en4ce
i dont liked that behavior in V3 as well, specially with custom infowindows (it just look not so good when zooming) i thought you made my day esa, i looked up the exemple before i read your whole post... then i read "undocumented", you know how it is with undocumented functions, cant really use em

[Google Maps API v3] Re: sometimes google maps doesn't load

2011-03-12 Thread en4ce
how about a link? On 12 Mrz., 15:08, Adriano Tadao wrote: > Good morning ... > > I implemented maps in my app but sometimes him doesn't load ... I don't > understand why... > > only show me a gray page ... =l > > any idea? > > Ps. I'm using with geolocalization library for get browser user positi

[Google Maps API v3] Re: API auxilliary JS files - cacheability

2011-03-15 Thread en4ce
maybe check the bowser with your server like in php ($_SERVER['HTTP_USER_AGENT']) and place different parameters to the map js script depending on the browser, its not the best way but something that can work with enough testing On 15 Mrz., 02:24, Esa wrote: > I got your idea bratliff. > > Howeve

[Google Maps API v3] Re: OverviewMapControl and Defaulting it to Max

2011-03-15 Thread en4ce
nice, thanks On 14 Mrz., 15:43, Esa wrote: > > I haven't found a option to start with a maximum display, but that is a > > minor problem for my users, that want to work with the overview: only click > > on the arrow in the right-bottom corner. > > Try: > >   overviewMapControlOptions: {opened: tr

[Google Maps API v3] Re: Custom Control - Just an image!

2011-03-16 Thread en4ce
your global map is named mapView? and maybe try RIGHT_BOTTOM ? map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(aLink); work fine for me post a link to your map, else we are fishing in the dark On 16 Mrz., 14:25, Lee Armstrong wrote: > I can't for the life of me work out how to emb

[Google Maps API v3] Re: How to set the map view to contain multiple positions?

2011-03-16 Thread en4ce
its called fitBounds (need 2 times lat 2 times lng) http://code.google.com/intl/de-DE/apis/maps/documentation/javascript/reference.html#fitBounds it automatic sets the zoom level On 16 Mrz., 21:17, Yves wrote: > I have a list of lat/long positions and would like to show them all in > a map with

[Google Maps API v3] Re: KML + GeoLocation?

2011-03-16 Thread en4ce
if that is you talking there is really nice to hear you =) i think you should do more like that, maybe on youtube? iam always looking for "google maps api v3" tags there would be awsom to talk to you for a sec in skype or where ever, greetings, enrico On 16 Mrz., 06:34, bowtie wrote: > Long tim

[Google Maps API v3] Re: Hi, newbie ask how to retrive the actual drive distance between to point via GM API v3?

2011-03-17 Thread en4ce
i still do it this way: google.maps.LatLng.prototype.distanceFrom = function(newLatLng) { var R = 6371000; var lat1 = this.lat(); var lon1 = this.lng(); var lat2 = newLatLng.lat(); var lon2 = newLatLng.lng(); var dLat = (lat2-lat1) * Math.PI / 180; var dLon = (lon2-lo

[Google Maps API v3] Re: ¿Can I Load specific user map with javascript API?

2011-03-17 Thread en4ce
i guess your from spain... anyway, you need to be a bit more specific basically YES you can On 17 Mrz., 13:49, Blacknet wrote: > Hi, > > I would like if i can load a specific user map previusly created in a > web page using javascript not using iframe. > > Thanks! -- You received this message

[Google Maps API v3] Re: Problems with many markers on a map

2011-03-17 Thread en4ce
you are in the wrong forum, this is the forum for the maps api v3 and you clearly use v2 have a nice day =) On 17 Mrz., 16:42, Dawi wrote: > Hi, I have a fairly serious problem. I made a website showing many > points on a map. The web site works fine in local mode, but online > does not show the

[Google Maps API v3] Re: google template error????

2011-03-19 Thread en4ce
no geocode, this time your not right, i have the same problem on my page it fails on the same thing, but just in certain cases and i think its something in the clients config see if it works for you, go to www.youspots.com and press the "My Area" button in the map, for 7 out of 10 people it works,

[Google Maps API v3] Re: google template error????

2011-03-19 Thread en4ce
rch 2011 13:59, en4ce wrote: > > > > > see if it works for you, go towww.youspots.comand press the "My > > Area" button in the map, for 7 out of 10 people it works, for the > > others it throw a error here: > > > var myOptions = { > >        

[Google Maps API v3] Re: google template error????

2011-03-19 Thread en4ce
>> "My area" for me is 300 miles off. i still think get your location 300mills off is quite ok, as i said before its about the ip and iam not bugging with annoying popups that ask to allow to share the location, no body does that anyway, at least not normal people -- Enrico -- You received thi

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

2011-03-25 Thread en4ce
i saw that as well and i´am really exited, finally its here, its not a super performer and the cool transition from the other maptypes to earth from V2 is not there, but still, finally something! i tryed to implement it, i think it can work but i wonder how to set the map type like "map.setMapType

[Google Maps API v3] Re: Google Is Amazing

2011-03-25 Thread en4ce
link ? On 25 Mrz., 21:48, Benjamin Wunder wrote: > I just watched a page with 856 polygons with 10,640 total points load in > under 3 seconds with Google maps Javascript v3.  Good job Google - you guys > are freaking awesome. -- You received this message because you are subscribed to the Google

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

2011-03-26 Thread en4ce
6 Mrz., 16:52, Josh L wrote: > Hi there, > > Good question:  The MapTypeId is not registered in > google.maps.mapTypeId, but you can set it directly by using: > map.setMapTypeId('GoogleEarthAPI'); -- I will add this to the > documentation as well. > > Cheers, >

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

2011-03-26 Thread en4ce
11:02 AM, "en4ce" wrote: > > > > > > > > > sorry that dont work, it throws an "c is undefined" error in the > > googleearth-compiled.js, i did include the file from the google server > > it self > > > there is no error msg

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

2011-03-26 Thread en4ce
as usually the error was on me i had the http://www.google.com/</a> jsapi"> still in my script, that wont work and throw the error On 26 Mrz., 19:19, en4ce wrote: > i cant wait to have my map finally in 3D, please keep us updated, if > you need more testing just tell us

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

2011-03-26 Thread en4ce
eek. > On Mar 26, 2011 11:02 AM, "en4ce" wrote: > > > > > > > > > sorry that dont work, it throws an "c is undefined" error in the > > googleearth-compiled.js, i did include the file from the google server > > it self > &g

[Google Maps API v3] Re: Problem in giving functionality to a button in infowindow of a marker

2011-03-26 Thread en4ce
did your read this? http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/2b3f101fd509919e# or your page is just local? On 26 Mrz., 18:26, Siddharth wrote: > I want to put a like and dislike button in the infowindow of the > marker in maps . I am not able to handle the event

[Google Maps API v3] Re: Dynamic Marker:Position (Strange Error)

2011-03-28 Thread en4ce
you can basicly do it like this google.maps.event.addListener(map, 'click', function(event) { addMarker(event.latLng); }); function addmarker(latlng){ var marker = new google.maps.Marker({ position: latlng, map: map, title: "foo",

[Google Maps API v3] Re: Maps V3 loaded but not displaying (happens across all browsers)

2011-03-28 Thread en4ce
yep this: do the trick On 28 Mrz., 14:41, Isen Ng wrote: > Hmm, > Ok. > > So theoratically, if I add height:100% to the form tag, the problem should > be solved. > > Thanks! > I will try it later! > > Isen -- You received this message because you are subscribed to the Google Groups "Google

[Google Maps API v3] Re: Maps V3 loaded but not displaying (happens across all browsers)

2011-03-29 Thread en4ce
if i follow your link again, its still not working ... On 29 Mrz., 08:39, Isen Ng wrote: > Thanks! i got the buggy page working. > > However what's even weirder is that my actual page started working even > before I made any changes. The actual page don't use any % height, it has a > absolute px

[Google Maps API v3] Re: Marker cursor does not change

2011-03-29 Thread en4ce
ermmm, of cause its not "// <-- THIS IS NOT REGARDED!" because you say something like: when ever a marker is created change the cursor do it that way and it will work: var myOptions = { zoom: VAR something, center: myLatlng, streetViewControl: true, draggableCursor:'u

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

2011-03-31 Thread en4ce
good work and thoughts, keep it comming i tested the map.setMapTypeId(GoogleEarth.MAP_TYPE_ID); and it works like the old version "map.setMapTypeId('GoogleEarthAPI');" but shouldn't it be something like "map.setMapTypeId(google.maps.MapTypeId.EARTH);" or am i missing something there ? thanks josh

[Google Maps API v3] Re: about ControlPosition optionally specify an offset

2011-04-01 Thread en4ce
maybe like that ? var customMapControls = document.createElement('div'); var customMapControlsExtra = document.createElement('div'); customControlDiv = document.getElementById("filterspot").innerHTML; extaControlDiv = document.getElementById("extralayers").innerHTML; customMapCon

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

2011-04-01 Thread en4ce
this: http://www.openatc.com/gm.asp is clearly maps api V2 On 1 Apr., 10:47, Thoern wrote: > 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 subscribe

  1   2   3   >