Re: [Google Maps API v3] Re: Store Locator

2011-04-15 Thread Mike Wellman
ASC Regards Davie On Mar 31, 9:34 pm, Mike Wellman mike.well...@gmail.com wrote: This may be the wrong area for this but not sure where to turn. I trying out the code from here: http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html I split up the database so that state

Re: [Google Maps API v3] Re: Store Locator

2011-04-14 Thread Mike Wellman
Still doesn't seem to work. Not sure what the problem could be. :/ On Tue, Apr 12, 2011 at 5:16 PM, Prophet mike.well...@gmail.com wrote: Yes that is what was I was seeing. I tried using a mysql temp table to try to help with the issue but that's a no go. I'm trying through the push array

Re: [Google Maps API v3] Re: Store Locator

2011-04-14 Thread Mike Wellman
barrybhun...@gmail.comwrote: I suggest you ask a clairvoyant, not sure we can help you any further either. (unless there is a clairvoyant among us?!) Posting a link to your map, may help somewhat. On 14 April 2011 19:54, Mike Wellman mike.well...@gmail.com wrote: Still doesn't seem to work

Re: [Google Maps API v3] Re: Store Locator

2011-04-01 Thread Mike Wellman
. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en. -- __ Mike Wellman Senior Multimedia Programmer GatesmanMarmionDrake, Inc. 60-15th Street, Southside, Pittsburgh, PA 15203 Main: 412.381.5400 x110 Cell: 724.630.1339

[Google Maps API v3] Store Locator

2011-03-31 Thread Mike Wellman
This may be the wrong area for this but not sure where to turn. I trying out the code from here: http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html I split up the database so that state is in it's own column. The problem that I am dealing with is I would like my listings in the

[Google Maps API v3] Hiding infoWindow shadow

2011-03-17 Thread Mike Wellman
I figured out a way to hide the infoWindow's shadow but the problem it isn't fireing until you click the marker twice. Was wondering if anyone knows how to fire something during/after the infowindow opens. The following code removes the infowindow shadow when you click on the marker twice. I

Re: [Google Maps API v3] Hiding infoWindow shadow

2011-03-17 Thread Mike Wellman
...@gmail.com wrote: On Mar 17, 1:48 pm, Mike Wellman mike.well...@gmail.com wrote: I figured out a way to hide the infoWindow's shadow but the problem it isn't fireing until you click the marker twice. Was wondering if anyone knows how to fire something during/after the infowindow opens

[Google Maps API v3] Need an update to Store Locator Page

2011-01-31 Thread Mike Wellman
Not sure if this is the right place for this but I figured I'd add it in. Creating a Store Locator with PHP, MySQL Google Maps *http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html*http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html locationSelect.innerHTML = ; var

[Google Maps API v3] Store Locator using just JavaScript and JSON

2011-01-30 Thread Mike Wellman
I've been trying to approach this at multiple angles and can't seem to find a working solution. http://dev.gmdadv.com/shopnsave/retailer_job_listing/search_jobs_testing.php I have a JSON formatted as so: [{ storeNumber:, storeName:, address:, city:, state:, zip:, phone:, fax:, latitude:,

[Google Maps API v3] Re: Store Locator using just JavaScript and JSON

2011-01-30 Thread Mike Wellman
Yes I forgot to remove that before posting. It was to be used in the geolocate from the zipcode box -- 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

[Google Maps API v3] Re: Store Locator using just JavaScript and JSON

2011-01-30 Thread Mike Wellman
function codeAddress(data){ var data = data; var address = document.getElementById(address).value; geocoder.geocode({ 'address': address }, function(results, status, data) { if(status ===

[Google Maps API v3] Re: Store Locator using just JavaScript and JSON

2011-01-30 Thread Mike Wellman
Try the same link again, It's updated with the code. As you can see the map loads with all markers shown. It shouldn't do this automatically. The markers do not clear between the two functions either. I would like the Zip to do a radius but all I have found is PHP references to do this.

[Google Maps API v3] Re: Setting Markers from Select Option List - Works Perfectly in FireFox but does not work in IE, Chrome, Safari

2011-01-27 Thread Mike Wellman
I should also Mention that the select box looks like this: select name=store_locations id=store_locations onchange=showStore(this.value); option value= Select a Store/option /select -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API

[Google Maps API v3] Re: Setting Markers from Select Option List - Works Perfectly in FireFox but does not work in IE, Chrome, Safari

2011-01-27 Thread Mike Wellman
select name=store_locations id=store_locations onchange=showStore(this.value); option value= Select a SHOP' n SAVE Store/option /select The onchange triggers another function that populates a side bar that I have that has job listings, noting that each option has an onClick. -- You

[Google Maps API v3] Re: Setting Markers from Select Option List - Works Perfectly in FireFox but does not work in IE, Chrome, Safari

2011-01-27 Thread Mike Wellman
I believe it is the onClick on the options that is causing my problem. Not sure how to address though :-/ -- 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: Setting Markers from Select Option List - Works Perfectly in FireFox but does not work in IE, Chrome, Safari

2011-01-27 Thread Mike Wellman
http://dev.gmdadv.com/shopnsave/retailer_job_listing/search_jobs.php -- 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,

[Google Maps API v3] Re: Setting Markers from Select Option List - Works Perfectly in FireFox but does not work in IE, Chrome, Safari

2011-01-27 Thread Mike Wellman
I converted everything to use the onChange and got the rel attribute of the selected option. In the rel attribute I inserted the dynamic values separated by commas and used the split function to get me variables for each value. All is working now. Thanks. -- You received this message

[Google Maps API v3] Setting Markers from Select Option List - Works Perfectly in FireFox but does not work in IE, Chrome, Safari

2011-01-26 Thread Mike Wellman
Any thoughts why this would work in FireFox and not the other browsers? I'm banging my head on this one. I'm trying to debug with no success. Any eyes and suggestions would be appreciated. Thanks! To clarify what the issue is... The markers do not show up when selecting an option from the

Re: [Google Maps API v3] Re: Open Marker Info Window based on Lat., Long.

2011-01-26 Thread Mike Wellman
Yes I tried a version of that into an array and it worked that way. The infowindow.open(map); I had in my code already but I needed to keep track of the markers with the use of an array push. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript

[Google Maps API v3] Open Marker Info Window based on Lat., Long.

2011-01-25 Thread Mike Wellman
I have a dropdown menu that fires a function which pushes the lat and long into the function. I have this working to set the center and zoom but I can't open up the info window that is at the exact lat and long. map.setCenter(new google.maps.LatLng(one,two)); map.setZoom(12); Is there anyway

[Google Maps API v3] Re: Open Marker Info Window based on Lat., Long.

2011-01-25 Thread Mike Wellman
Using 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. To unsubscribe from this group, send email to

[Google Maps API v3] Re: Targeting Info Window X Close to stop Bounce - toggling multiple bouncing markers

2011-01-25 Thread Mike Wellman
Thanks Jim, This gives insight on future functionality (the power of v3) that can be used in my current and future projects. -- 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: Open Marker Info Window based on Lat., Long.

2011-01-25 Thread Mike Wellman
Thank you, but I have read into that functionality. I don't need to create a marker. The marker already exists on the map. I just need to open it's infowindow. -- 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: Targeting Info Window X Close to stop Bounce

2011-01-20 Thread Mike Wellman
Thank you but for the moment I'm using: google.maps.event.addListener(marker, 'click', toggleBounce); google.maps.event.addListener(infowindow, 'closeclick', function() { marker.setAnimation(null); }); for testing and everything works as planned. -- You received this message because you

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

2011-01-20 Thread Mike Wellman
Now to try to figure out how to toggle the bounce with multiple markers -- 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,

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

2011-01-17 Thread Mike Wellman
Is there any way to target the Info Window x Close button to drop/Stop the bouncing animation when the info window is closed? Code: code var infowindow = new google.maps.InfoWindow({ content: contentString }); marker = new google.maps.Marker({ map:map, draggable:false,

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

2011-01-17 Thread Mike Wellman
No and thank you for pointing this out. I'll check it out. -- 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