[Google Maps API v3] What icon should be used when going to Google Maps from another application

2013-01-30 Thread Steve Cocker
have attached the current icon we have in the product. Thanks, Steve -- 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-

Re: [Google Maps API v3] Re: markerWithLabel printing - labels missing

2012-06-12 Thread Steve Ai
yes it's been resolved...there was something wrong with the map.js script..dunno actually but i just rewrote a simpler one: this was the old script (function() { window.onload = function() { var mapDiv = document.getElementById('map'); var latlng = new google.maps.LatLng(6.596183, 3.35

Re: [Google Maps API v3] Re: Object Created but not Consumed?

2012-06-12 Thread Steve Ai
Yeah...it was the image file, got it fixed...Thanks Alot for the response...! On Mon, Jun 11, 2012 at 6:18 PM, Dave Medlicott wrote: > The link to the image file doesn't work. If I put a good link in, then it >> works fine for me with or without the code for the first marker. > > -- > You recei

[Google Maps API v3] Map placed directly into Wordpress w/o a pluggin?

2012-03-05 Thread Steve Smith
> Hmm, neat. Thanks > Nevertheless there are many many span elements inside the document > sharing the same id "tab1!", "tab2", "tab3". Does this really work in > all browsers? This works in all browsers I've so far tested; IE 8x/9x, FF 9x/10x, Chrome 17x. I've not tried Safari. >Also: Not a

[Google Maps API v3] Map placed directly into Wordpress w/o a pluggin?

2012-03-02 Thread Steve Smith
Thanks for the tip Barry. I'll look into Iframes as a solution. Barry Hunter Mar 01 03:13PM > experience w/wordpress, it seems from my newbie point of view that > defining a piece of the screen and rendering this URL into it will work – > but is it that simple? Does w

[Google Maps API v3] Map placed directly into Wordpress w/o a pluggin?

2012-02-29 Thread Steve Smith
defining a piece of the screen and rendering this URL into it will work – but is it that simple? Any thoughts on how I achieve this are much appreciated. TIA – Steve http://people.oregonstate.edu/~smitstev/Oregon_Foodie_Map.htm -- You received this message because you are subscribed

[Google Maps API v3] Latitude/Longitude from a Street View?

2012-02-01 Thread Steve Smith
allow me to tweak the position and get a parameter pointing exactly as I would like it too. TMIA Steve -- 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

[Google Maps API v3] Pan end does not change cursor style from draggingCursor back to draggableCursor style

2012-01-30 Thread Steve Mitchell
I set the draggingCursor and draggableCursor style. The cursor style begins as draggableCursor and correctly changes to draggingCursor as the pan begins; however, it only returns to draggableCursor if I hover briefly over a marker or polyline (with cursor = 'pointer'). var mapOptions = {

[Google Maps API v3] Question re: Using InfoBox to Create a Map Label

2012-01-21 Thread Steve Smith
(that is, from the server), but when I cut it into a file to modify and then run this unmodified from my local machine w/'OPEN' it doesn't show the infobox or text. What am I doing wrong? TIA... Steve -- You received this message because you are subscribed to the Google Gro

[Google Maps API v3] Google road layer on top of my tiles?

2011-12-14 Thread Steve D
of polygon data beneath these layers. The ability to style Google's layers suggests that the data is flexible, but I don't know where to start. Ideally, my data could also sit on top of the satellite layer and below the road layer... but I could live without that for now. Thanks, -Steve

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-26 Thread Steve McIntyre
.ActiveXObject ? new ActiveXObject('Microsoft.XMLHTTP') : new XMLHttpRequest; request.onreadystatechange = function() { if (request.readyState == 4) { request.onreadystatechange = doNothing; callback(request, request.status); } }; request.open(

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-26 Thread Steve McIntyre
Again, I'll askcan it be done in two separate functions? On Oct 26, 4:16 am, Rossko wrote: > > Both could be executed with the window.onload command, rather than the > > body tag. > > Why 'both'?  You don't need everything to happen at once.  There is > absolutely nothing stopping you havin

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-25 Thread Steve McIntyre
So... Yes, it can be done in two separate functions? Both could be executed with the window.onload command, rather than the body tag. On Oct 25, 11:30 pm, "jufemaiz:joel" wrote: > Yes - you just need to be referencing the same "map" (I'm assuming "map > making" is the akin to creating the map it

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-25 Thread Steve McIntyre
Is it possible to leave the map making and geolocation to one function, and just add markers to the one map with a separate function? or Does the map drawing and marker placement all have to be done in one function? On Oct 25, 1:02 pm, Rossko wrote: > > It looks > > like there are two maps be

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-25 Thread Steve McIntyre
Javascript Smash! Javascript, meet Hulk. Hulk, meet Javascript. OK, so here's one I ran through Firebug that isn't showing me any errors. It attempts to combine the geolocation with the DB listings, though still keeping the code separate for the two functions. It looks like there are two maps bein

[Google Maps API v3] Re: on change function not working

2011-10-23 Thread steve
t? Thanks. Steve -- 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] Re: Combine User Location with PHP/MySQL Listings

2011-10-21 Thread Steve McIntyre
So I took your advice and I put the geolocation and the DB listings in separate functions (tasks). I was able to get it so the functions load (as seen with the alert on Listings), but it's still not populating the map_canvas. I suspect this line might be a key to overcoming this: bindInfoWindow(m

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-21 Thread Steve McIntyre
> It may be that you haven't grasped how php works?  ALL the php is run > at server, any output is assembled into a page which is sent to the > client, THEN the client builds the display and runs any javascript. Yes I do understand that PHP is server side and JS is client side and that AJAX can ma

[Google Maps API v3] Re: Combine User Location with PHP/MySQL Listings

2011-10-20 Thread Steve McIntyre
> Whatever geolocation code you put in before that, your php writes in > the centre values here effectively hardcoded.  Have you used your > browser's 'view source' feature to see what actually gets sent to the > browser by your php? I forgot to mention those. I put those in there in a side expe

[Google Maps API v3] Combine User Location with PHP/MySQL Listings

2011-10-20 Thread Steve McIntyre
Hi All, I have done a few of these tutorials successfully, but I have yet to come across a tutorial that combines these two features and I can't seem to get there on my own. The method of populating a map with a database full of markers that works best for me is covered in this tutorial: //http://

[Google Maps API v3] Re: on change function not working

2011-10-19 Thread steve
information coming out of the first query? Thanks. Steve -- 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

[Google Maps API v3] Re: on change function not working

2011-10-18 Thread steve
Thanks for the suggestion. Name maping does have some issues. There are school districts with same names but in different states. I will have to put the unique code for each school district in the kml file and then do the mapping with it. Steve On Oct 17, 11:54 pm, "geocode...@gmail.com&qu

[Google Maps API v3] Re: on change function not working

2011-10-16 Thread steve
> > I also uploaded another fusion table: > > http://www.google.com/fusiontables/DataSource?dsrcid=1865919 > > Can't see that one... > > Sorry, does not have the permissions to view the > requested table. > You should be able to see it now. Steve -- You received

[Google Maps API v3] Re: on change function not working

2011-10-16 Thread steve
information up on the info window when you find a school district. Maybe you can try with your event listener. Regards, Steve -- 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

[Google Maps API v3] Re: on change function not working

2011-10-16 Thread steve
You really looked into this!!! Thanks. It is the data issue. Even though two polygons are connected with a single point, they are considered as two polygons. So after I separate them, it has no issue now. Please check out the new table at http://webknows.net/local/schoolboundarynew.asp Steve

[Google Maps API v3] ie9 geolocation support

2011-10-14 Thread steve
It seems IE9 can not support geolocation. Anyone has any solution or suggestion? Thanks. Steve -- 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@googlegrou

[Google Maps API v3] Re: on change function not working

2011-10-13 Thread steve
ot;, 1))"); The multiple polygons can be displayed correctly now.Thanks. Steve -- 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

[Google Maps API v3] Re: on change function not working

2011-10-13 Thread steve
s; i++) { geoXml.parseKmlString(""+response.getDataTable().getValue(i, 0)+""); } geoXml.docs[0].gpolygons[0].setMap(null); map.fitBounds(geoXml.docs[0].gpolygons[0].bounds); I really appreciate your quick response. Steve. -- You received this message because

[Google Maps API v3] Re: on change function not working

2011-10-13 Thread steve
Larry, You are always one step ahead of me. I will try to figure how to make it work:) Steve -- 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@googlegrou

[Google Maps API v3] Re: on change function not working

2011-10-13 Thread steve
Yes. That is exactly what I wanted. I see you commented following lines out. // layer.setQuery("SELECT geometry FROM "+tableid+" WHERE ST_INTERSECTS(geometry,CIRCLE(LATLNG"+results[0].geometry.location+", 1))"); Can that work? Thanks again, Steve

[Google Maps API v3] Re: on change function not working

2011-10-13 Thread steve
. The new link is http://webknows.net/schoolboundarynew.asp. You can use the links there to check out other information about your local community too. I am using it to help house hunting. Regards, Steve On Oct 13, 12:26 pm, "geocode...@gmail.com" wrote: > On Oct 13,

[Google Maps API v3] Re: on change function not working

2011-10-13 Thread steve
? Steve -- 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...@googlegroup

[Google Maps API v3] Re: on change function not working

2011-10-12 Thread steve
Thanks. It works now. Need to use "+". But does that mean I need to create a new fusion table layer even though I am working with same table? Steve On Oct 12, 2:15 am, Rossko wrote: > >                 layer.setQuery("select geometry from 1813014 where name=" &am

[Google Maps API v3] on change function not working

2011-10-11 Thread steve
is as below. Thanks. Steve function updateMap() { var e = document.getElementById("schoolID"); var schoolID = e.options[e.selectedIndex].value; layer.setQuery("select geometry from 1813014 where name=" & schoolID);

[Google Maps API v3] can I get all junction point,intersection point,cross point on the road from A to B?

2011-08-16 Thread steve
Hi all, I'm using route on api v3,can I get all cross point on each steps? because I want to check one road cut another road,so I think if I can get all cross points on each road I can determine it ex:the route http://maps.googleapis.com/maps/api/directions/json?origin=21.008981,105.862541&destina

[Google Maps API v3] Getting started with tile overlays.

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using overlay tiles. I have all the cartography for each of the polygons that I want to draw on

[Google Maps API v3] Custom Tile Overlays

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using ov

[Google Maps API v3] Getting Started With Custom Tiles

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using ov

[Google Maps API v3] Getting Started With Custom Tiles

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using ov

[Google Maps API v3] Getting Started With Custom Tiles

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using ov

[Google Maps API v3] Getting Started With Custom Tiles

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using ov

[Google Maps API v3] Getting Started With Custom Tiles

2011-05-05 Thread Steve Horn
My goal is to create overlays of zip codes/counties/and some other cartography onto a map of the U.S.. I've concluded that my dataset is large enough that I really need to use an overlay map type...using ov

[Google Maps API v3] Re: Weird KML Balloon text overflow problem only with embedded map

2011-04-22 Thread Steve Cole
etween these HTML elements in the balloons. I swapped a 1px high for the divider and then another with some margin-left offset to handle the indentation I wanted and everything FINALLY stayed within the balloon windows. Thanks for all the suggestions and dialogue! Steve -- You received

[Google Maps API v3] Re: Weird KML Balloon text overflow problem only with embedded map

2011-04-19 Thread Steve Cole
On Apr 19, 4:44 pm, Joseph Elfelt wrote: > On Apr 19, 4:11 pm, Steve Cole wrote: > > > Yeah, sorry. The HTML page isn't live yet (but the KML is posted). > > Can you share  the link to your KML? Certainly: Http://publicworks.snoco.org/rdclosures/snocordclosures4gmap

[Google Maps API v3] "a is null" error from google maps site

2011-04-11 Thread Steve
Firefox error console is showing an "a is null" error in line 28 from https://maps-api-ssl.google.comintl/en us/mapfiles/api-3/4/8b/main.js My link is: http://www.tbocworshipcenter.org/map.htm I would greatly appreciate help in knowing what is expected and was not provided. I checked my code aga

[Google Maps API v3] Restricting Streetview Zoom Levels

2011-03-24 Thread Steve Mooney
I have some users who get confused when streetview zoom level gets set to 0 (they have trouble with the fish-eye effect), so I'd like to be able to block it. I haven't found a way to set allowed zoom levels via the api, nor to get a notification when they change, so I'm currently polling the zoom

Re: [Google Maps API v3] Re: onmousedown event not firing in map on map

2011-03-01 Thread Steve Adey
Hi Jeremy, Thanks for your time spent on the fix. Sorry, but I have only just read this message which does work as you indicate. I was just confused by the functionality, which differed from what I expected. I thought that you had fixed only one of my three reported issues, so I automatically raise

Re: [Google Maps API v3] Re: Rotate the Map, Don't want to use True North...

2010-12-29 Thread Steve D
re the odd tile wouldn't load for some reason, can't tell you if that's still the case.) The trick would be to hide map using z-level so that it can be squared off (unless it fits by rotating exactly 90 degrees...) -Steve D On Wed, Dec 29, 2010 at 12:42 AM, Chris Broadfoot wr

Re: [Google Maps API v3] Re: Perspective

2010-11-12 Thread Steve D
could use flash, but from what I'm reading so far, having html/javascript tell the flash object what to do isn't very easy. Gonna think on this some more. -Steve D On Thu, Nov 11, 2010 at 4:53 AM, Chad Killingsworth < chadkillingswo...@missouristate.edu> wrote: > Honestly I

[Google Maps API v3] Perspective

2010-11-11 Thread Steve D
an iphone so flash is kind of right out. :/ Anyway, I hope it makes sense what I'm asking, it's 1:30AM and I've got grand ideas zipping around in my head! Thanks, -Steve D -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript A

Re: [Google Maps API v3] Scrollwheel zoom broken in Opera?

2010-10-15 Thread Steve D
I find the transitions are the same way (rough) with FF4 beta 6, but yes, the scroll wheel zoom is most definitely backwards in Opera. This is new in the last month or two (was fine last spring). maps.google.com is fine though. -Steve D On Fri, Oct 15, 2010 at 2:56 AM, Martin wrote: > H

[Google Maps API v3] Re: Clear directions using setDirections

2010-03-10 Thread Steve Johnson
That did it!! thank you. On Mar 10, 11:36 am, Marcelo wrote: > On Mar 10, 7:13 pm, Steve Johnson > wrote: > > > So what is the proper way to clear the directions? > > Ahhh, now we have a question! ;-) > > To clear, you can do: > directionsDisplay.setMap(n

[Google Maps API v3] Re: Clear directions using setDirections

2010-03-10 Thread Steve Johnson
So what is the proper way to clear the directions? On Mar 10, 9:30 am, Marcelo wrote: > On Mar 10, 2:52 pm, Steve Johnson > wrote: > > > The following is used to clear the directions on my map: > > > MyRender.setDirections({trips: []}); > > > This no longe

[Google Maps API v3] Clear directions using setDirections

2010-03-10 Thread Steve Johnson
The following is used to clear the directions on my map: MyRender.setDirections({trips: []}); This no longer works. -- 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...@goo

Re: [Google Maps API v3] Re: Gray vertical bar on right side of map in IE only

2010-03-05 Thread Steve D
Oh, well for gosh sakes. I thought I buggered up the javascript or the div itself. Thanks a ton fellas. -Steve D On Fri, Mar 5, 2010 at 12:09 PM, Brak wrote: > Marcelo is right. The page doesn't have a DOCTYPE so IE interprets the > page using it's Quirks Mode instead of

[Google Maps API v3] Gray vertical bar on right side of map in IE only

2010-03-05 Thread Steve D
Subject pretty much says it all. For some reason there appears to be a vertical line of gray up the right side of my map. Doesn't appear in Firefox or Opera, just IE. (I only have IE 8 to work with as well.) http://pos.monitorpc.operaunite.com/webserver/content/ABCmap.html Umm, yeah. It's not

Re: [Google Maps API v3] Re: Tile opacity

2010-02-11 Thread Steve D
cript is doing that for you) Anyway, this seemed to get rid of the little red x's that were showing up all over my map: tile.onerror = function(){this.onerror=null; this.src='./none.png';}; -Steve D On Thu, Feb 11, 2010 at 12:41 AM, Marcelo wrote: > On Feb 10, 5:43 pm, Stev

Re: [Google Maps API v3] Re: Tile opacity

2010-02-10 Thread Steve D
Doesn't currently work in Opera 10.10, though it does look nice Firefox 3.5.7. I'm thinking I might just go back to v2 though. -Steve D On Wed, Feb 10, 2010 at 4:34 AM, Marcelo wrote: > Custom overlays with opacity here: > http://maps.forum.nu/v3/gm_customTiles.html > >

Re: [Google Maps API v3] Re: Tile opacity

2010-02-08 Thread Steve D
Ahh, thanks! -Steve D On Mon, Feb 8, 2010 at 6:09 PM, Chad Killingsworth < chadkillingswo...@missouristate.edu> wrote: > That's because there isn't one in the ImageMapType object. You'll have > to use a custom overlay such as > http://search.missouristate.edu/map/

[Google Maps API v3] Tile opacity

2010-02-08 Thread Steve D
//of the non transparent part I can't seem to find the equivalent function in v3 in the reference. Thanks in advance, -Steve D -- 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] Re: Adding a Marker

2009-11-24 Thread Steve McIntyre
GENIUS! That did it arclyte. Thank You! I replaced var point = new GLatLng(, ); map.addOverlay(new GMarker(point)); with this: var marker = new google.maps.Marker({ position: latlng, map: map, title: "Title" }); But I didn't stop there. I also added th

[Google Maps API v3] Re: Adding a Marker

2009-11-22 Thread Steve McIntyre
Nov 22, 11:39 pm, Ben Appleton wrote: > Hi Steve, > > Your site is using Maps API v2 code (such as "GLatLng"), which is not > compatible with Maps API v3.  I suggest starting with the v3 > tutorial:http://code.google.com/apis/maps/documentation/v3/introduction.html > &g

[Google Maps API v3] Adding a Marker

2009-11-22 Thread Steve McIntyre
I know this should be easy, but I'm having trouble getting a marker to show up on my map. I'm using a little PHP to convert an address to Lat/ Long before things get started and that seems to be working fine. The map is coming up with the correct location centered. I still need the marker and the i