[Google Maps API v2] Change these icons..

2011-06-24 Thread aidema
Can someone please show me the code that would change these icons (standard google) http://econym.org.uk/gmap/example_store.htm to custom icons? You can use http://www.sampleicons.com/1.png as a generic URL. I've been tinkering with it and can't seem to make it work with my custom icons. Thanks!

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
var test_point = points[i]; map.addOverlay(new GMarker(test_point, markerOptions)); } On Jun 6, 11:47 am, aidema wrote: > Ok I understand what you mean. > > Unfortunately when I tried this new approach the mile markers are > still not plotting. > >  

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
/ Set up our GMarkerOptions object markerOptions = { icon:blueIcon }; var test_point = points[i]; map.addOverlay(new GMarker(test_point, markerOptions)); } On Jun 6, 11:47 am, aidema wrote: > Ok I underst

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
arker(test_point,'Testing') map.addOverlay(test_marker); } On Jun 6, 11:43 am, "geocode...@gmail.com" wrote: > On Monday, June 6, 2011 10:36:47 AM UTC-7, aidema wrote: > > > I understood that the points[i] variable was actually two arguments? > >

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
I understood that the points[i] variable was actually two arguments? On Jun 6, 11:31 am, "geocode...@gmail.com" wrote: > On Monday, June 6, 2011 10:24:20 AM UTC-7, aidema wrote: > > > This was my latest attempt.  It doesn't plot the mile markers. > > > var

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
map.addOverlay(test_marker); } On Jun 6, 8:25 am, aidema wrote: > Thanks Larry.  I'll take a look at the code for the link you sent and > see if it helps. > > I did try to do custom markers based on Mike's example and also the > Google documentation but whenever I

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
, -91.84541630121284),(35.22744023381342, -91.82967995349988),(35.234055503304745, -91.81394360578693) Maybe I can break each lat long set into its own variable and then output it that way. That's what I will try next. On Jun 6, 8:25 am, aidema wrote: > Thanks Larry.  I'll take a loo

[Google Maps API v2] Re: Customize this marker?

2011-06-06 Thread aidema
t post. I appreciate the links but I do plenty of searching before I come here to ask for help. So I'm not extremely confident that I'll be able to derive a solution from the link. On Jun 4, 1:00 pm, "geocode...@gmail.com" wrote: > On Jun 4, 1:08 pm, aidema wrote: > > &g

[Google Maps API v2] Re: Mile markers

2011-06-04 Thread aidema
Thanks Larry. That is helpful. I did poke around some more both in this group and on Google and found that Mike William's epoly.js will give me the mile marker result. On May 31, 9:05 pm, "geocode...@gmail.com" wrote: > On May 31, 5:27 pm,aidema wrote: > > > I want

[Google Maps API v2] Customize this marker?

2011-06-04 Thread aidema
I used the epoly.js from Mike William's site to plot mile markers on a Google Map. var polyline = new GPolyline([ new GLatLng(40.40246729103128,-105.0493597984314), new GLatLng(40.40241827029216,-105.04659175872803), new GLatLng(40.403088217303484,-105.046591758728

[Google Maps API v2] Mile markers

2011-05-31 Thread aidema
I want to add mile markers to the polyline mode on this app. http://www.birdtheme.org/useful/googletool.html All I want to do is plot mile markers along the polyline as one draws. I thought that maybe the epoly.js from http://econym.org.uk/gmap/epoly.htm was the answer but I can't quite figure

[Google Maps API v2] .kml and .kmz files

2010-10-26 Thread aidema
I read the section on displaying kml files in Google Maps and ran a test utilizing one of Google's sample .kml files and it worked just fine. I am curious though how I can let users upload their own .kml files to my website and then display them. Will that work? How do people generate .kml or .k

Wondering about uploads from GPS or cell

2009-12-29 Thread aidema
I have a website that allows people to manually plot points on my map and then save them as an individual pinpoint or a path of several pinpoints. I love it and it works great but I'm thinking that there has to be an efficient way for people carrying GPS devices or smart phones to do this without

Re: Click on a map to submit lat/long

2009-12-09 Thread aidema
However, I still need two very important features. 1 - When the user clicks I want to display a pinpoint. 2 - If the user clicks again I want to take away the initial pinpoint and add one where the new click was. Any advice/assistance is greatly appreciated. Thanks On Dec 9, 8

Re: Click on a map to submit lat/long

2009-12-09 Thread aidema
Mike, Your tutorial is good but it looks like it stores the data to a file on the server. When the user clicks a pinpoint and then enters details into the popup ballopn and presses submit, I want the form to process and navigate to another page. Currently this is not working for me.

Re: Click on a map to submit lat/long

2009-12-08 Thread aidema
passes that to another page when the submit button is pressed. On Dec 8, 7:52 am, aidema wrote: > What about something like this? > >   >     function GMarker_Click() >     { >       var html = "<b>" + this.id + "</b>"; >       this.openInfoW

Re: Click on a map to submit lat/long

2009-12-08 Thread aidema
What about something like this? function GMarker_Click() { var html = "" + this.id + ""; this.openInfoWindowHtml(html); } On Dec 8, 7:40 am, Mike Williams wrote: > What do you mean by "send"? > > You can send it from the client page to your se

Click on a map to submit lat/long

2009-12-08 Thread aidema
I currenty ask users where they were located while bike riding by entering a lat/long coordinate set. I'd like to make it easier for them. I want to let them click (and drag) a pin to a point on the map and when they are satisifed, click save. Once that save happens I want the lat/long to be sen

Re: Plot points when user zooms in

2009-10-15 Thread aidema
>   -- Larry > > > > > > > On Thu, Oct 15, 2009 at 9:09 AM, geocode...@gmail.com > > wrote: > > > > On Oct 15, 7:18 am, aidema wrote: > > > > That's pretty cool.  Wow.  Thanks Larry! > > > > > I still would like to get a bette

Re: Plot points when user zooms in

2009-10-15 Thread aidema
That's pretty cool. Wow. Thanks Larry! I still would like to get a better understanding of all this. Love Google Maps but never know what the heck I'm doing. :) I think it's time to hit the books a bit. On Oct 15, 8:06 am, "geocode...@gmail.com" wrote: > On Oc

Re: Plot points when user zooms in

2009-10-15 Thread aidema
Ok thanks Rossko and geocodezip. I think what's happening is that I don't know javascript!! :) I am going to fold for now and try to understand what it is I'm doing. Oh well thank you for the time and suggestions. On Oct 15, 7:57 am, aidema wrote: > I am new to the G

Re: MarkerManager issue

2009-10-15 Thread aidema
Yes moved the post from this to there. On Oct 15, 7:53 am, Andrew Leach wrote: > On Oct 15, 2:47 pm, aidema wrote: > > > > > Here is where I am thus far:http://199.134.225.62/iteam/maps_hack.cfm > > Isn't this already being dealt with in this > thread:http:

Re: Plot points when user zooms in

2009-10-15 Thread aidema
having a little diffuculty. Can you please help me understand why the pins aren't displaying and what I need to do to correct? On Oct 15, 7:44 am, aidema wrote: > The html is fine but thank you for the validator.  That is off topic > so we can address that once I'm out of test

Re: Plot points when user zooms in

2009-10-15 Thread aidema
isn't returning anything. On Oct 14, 3:50 pm, "geocode...@gmail.com" wrote: > On Oct 14, 2:04 pm, aidema wrote: > > > I have the min and max working correctly now.  (Searched the Maps API > > group and found solution) > > > However, I declared the array globall

MarkerManager issue

2009-10-15 Thread aidema
Hello all. I am new to the Google Maps API and wanted to try the MarkerManager. I checked out the documentation on Google and also looked at the weather example they provide. Using that example I tried to dig in a bit and create my own map but I am having a little diffuculty. Here is where I a

Re: Plot points when user zooms in

2009-10-14 Thread aidema
I have the min and max working correctly now. (Searched the Maps API group and found solution) However, I declared the array globally and still do not have any points plotting correctly. There are no errors being thrown by the browser so I'm not sure how to proceed. On Oct 14, 2:52 pm, Rossk

Re: Plot points when user zooms in

2009-10-14 Thread aidema
I did check those and have made some progress. However, now I'm getting an error that doesn't make much sense to me. http://199.134.225.62/iteam/maps_hack.cfm On Oct 14, 10:58 am, "geocode...@gmail.com" wrote: > On Oct 14, 8:41 am, aidema wrote: > > > I fo

Who wants to help me debug? :)

2009-10-14 Thread aidema
I am getting an error and I don't have a clue why... http://www.nwportal.fs.usda.gov/USFS_R6/ITEAM/maps_hack.cfm --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send em

Re: Plot points when user zooms in

2009-10-14 Thread aidema
evel 8. Does that mean between zoom 3 and 6 it will only show the 20 points? Furthermore, if you are on a zoom less than 3, will it not show any points? I can't just plugin code and test where I am. On Oct 14, 9:20 am, Marcelo wrote: > On Oct 14, 4:48 pm, aidema wrote: > > >

Re: Plot points when user zooms in

2009-10-14 Thread aidema
I'm not sure how that helps... I did look through their code and wasn't able to find the result I was looking for. On Oct 14, 9:20 am, Marcelo wrote: > On Oct 14, 4:48 pm, aidema wrote: > > > > > I want to know how to only plot points when a user zooms into a >

Plot points when user zooms in

2009-10-14 Thread aidema
I have thousands of points I need to plot for a specific state. Plotting all of them when the user loads the first map of the state would be way too time consuming... perhaps would crash the browser. I want to know how to only plot points when a user zooms into a certain area. I've been searchin

How to limit pinpoints???

2009-09-16 Thread aidema
I have a site that has thousands of pinpoints for each state. I allow the user to display the google map state by state... how do I get the pinpoints to only load for a certain radius? Actually I still need to load every single point... how can I do this without chewing up my server? --~--~