[Google Maps API v3] Re: Listing zoom

2011-11-11 Thread Am
I got it all set up. Thank you for your help. I appreciate it. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/nj8RGkU7JFkJ. To po

[Google Maps API v3] Re: Listing zoom

2011-11-10 Thread Am
I would love help with that! I've been looking online for something that tells me how to add additional fields to the search but I'm not having any luck. I'm trying to search by bathrooms, bedrooms, price min and max, and rent, rent to own, or contract purchase. I don't know where to start. --

[Google Maps API v3] Re: Listing zoom

2011-11-08 Thread Am
Ok, I figured it out. I needed to add if (map.getZoom() > 16) {// Change max/min zoom here //alert(); map.setZoom(16); } after map.fitBounds(bounds); -- You received this message because you are subscribed to the Google Groups "Google Maps J

[Google Maps API v3] Re: Listing zoom

2011-11-07 Thread Am
Thank you for your help. I think that is what I'm looking for. Before I made changes (which recently broke the page) it would zoom in 100%. I have no idea what any of the code does. I'm not a programmer, I just wanted to build the map without having to purchase one already made. Do I have code

[Google Maps API v3] Re: Listing zoom

2011-11-02 Thread Am
Thank you for helping me. I changed the code like you suggested. When I search (arvada, co; 10mi) the marker displays on the map, but the map zoom doesn't change. It stays at the full US zoom. I tried changing the zoom level in the code zoom =8; and nothing happened. I can zoom in manually, but

[Google Maps API v3] Re: Listing zoom

2011-10-31 Thread Am
sorry, that was Longwood, FL 10mi, not 5mi. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/5yTOfHbSOXsJ. To post to this group, s

[Google Maps API v3] Re: Listing zoom

2011-10-31 Thread Am
Thank you for the help. I assume I did this incorrectly since it's not zooming in when I search (longwood, fl, 5mi for example). Here is my code: function searchLocationsNear(center) { clearLocations(); var radius = document.getElementById('radiusSelect').value; var searchUrl = '

[Google Maps API v3] Re: Listing zoom

2011-10-31 Thread Am
Thank you for the advice. It's really helpful, but I don't know how to set the zoom level. I know I just add &zoom=12 to the url, but my code doesn't have a url, just variables and functions. How do I set the zoom if I don't have a url? -- You received this message because you are subscribed t

[Google Maps API v3] Re: Linking sidebar to map

2011-10-31 Thread Am
Oh ok, I understand. Thank you for the advice. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/QNFT2ArdGzcJ. To post to this group

[Google Maps API v3] Listing zoom

2011-10-31 Thread Am
I wasn't able to find another post similar to my question, but I'm hoping someone can help walk me through this. How do I set the zoom level of the map when I search for properties? I don't have a url, so I'm not sure how to set the zoom. For example: When I search for an address that does not

[Google Maps API v3] Re: Linking sidebar to map

2011-10-28 Thread Am
Thank you for the advice. I believe I have it defined: function createMarker(googlemap_ltgooglemap_ln, street) { var marker = new google.maps.Marker({ map: map, position: googlemap_ltgooglemap_ln }); google.maps.event.addListener(marker, 'click', functi

[Google Maps API v3] Re: Linking sidebar to map

2011-10-28 Thread Am
I had to change infoWindow.setContent(html); to infoWindow.setContent(bubble);, and duplicate my variable with the name bubble instead of html, and remove the link from it. var html = "" + street + "<\/a> "; // info window contents var bubble = "" + street + ""; // info window contents In ca

[Google Maps API v3] Re: Linking sidebar to map

2011-10-28 Thread Am
When I put the code where I think it needs to go, it automatically adds it to the bubble. I don't know how else to do it, that's why I'm asking for help. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion

[Google Maps API v3] Re: Linking sidebar to map

2011-10-27 Thread Am
Ok, I got the links to work by changing markers.length-1 to markers.length-0. How do I remove the link from the bubble? Can I even remove it? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web vi

[Google Maps API v3] Linking sidebar to map

2011-10-27 Thread Am
able to find a tutorial to do this. How do I link my sidebar results to the map? Am I even doing it the right way? http://www.rentalmatch101.com.php5-20.dfw1-1.websitetestlink.com/googlemap.php Thank you for your help. -- You received this message because you are subscribed to the Google Group

Re: [Google Maps API v3] convert city and state ids to city and state names

2011-10-27 Thread Am
Unfortunately the names are not in the database. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/qA8q1XbRBpQJ. To post to this gro

[Google Maps API v3] convert city and state ids to city and state names

2011-10-27 Thread Am
Hi, I'm pulling a city and state id from my database to display in my map search results. Is there a tutorial somewhere that will show me how to write the code to display the city and state name rather than the id number? If not, how do I do that? http://www.rentalmatch101.com.php5-20.dfw1-1.web

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-27 Thread Am
thank you so much for your help. I appreciate it -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/o2EyvpkzLj4J. To post to this gro

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-26 Thread Am
Thank you for the explanation. How do I write the code? What do I write? Is there a tutorial to walk me through this? I don't know what code needs to be written. Thanks for your help. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" g

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-26 Thread Am
Thank you for the input. I don't have 1000 properties, and may never have properties in every country. Other store locators don't have thousands of properties or properties in other countries, but doesn't default to the center of the ocean when you search for a location without properties. With

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-26 Thread Am
I seem to be frustrating you. I apologize, but I do not understand what I am looking at. That is why I'm asking questions, hoping someone can help me work through this so I can understand. I understand if I'm too frustrating to help and will not be offended if you stop helping me.

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-26 Thread Am
I viewed the example, but it is set up different than my map, so I'm not sure what I'm supposed to do. I found where this map links their sidebar, but I don't have similar code, so when I copy their code, it breaks my map. -- You received this message because you are subscribed to the Google Gr

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-26 Thread Am
Is there anywhere specific in my code I'm supposed to add this? Before or after anything? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-26 Thread Am
thank you for your help. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/LAgt1E6MjpEJ. To post to this group, send email to google

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-26 Thread Am
Thanks for the input. When I put the call there, it doesn't list all the properties, only one of them. How do I make it list all the properties? -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-26 Thread Am
When I put it in the marker function, the list only displays the last marker. function createMarker(googlemap_ltgooglemap_ln, street) { * var sidebarInfo = "";* var html = "" + street + ""; // info window contents sidebarInfo += html; // add this line after the html var

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-25 Thread Am
I feel dumb asking this, but I've put var sidebarInfo = ""; in every function on the page and I can't get it to clear the list. Where am I supposed to put the call in my code? Thank you for your help. -- You received this message because you are subscribed to the Google

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-25 Thread Am
That took care of the undefined issue, thank you so much! I have a couple more questions. When I search, I get the properties correctly. But if I search again, the list in the sidebar doesn't clear, it just ads the new properties to the list. How do I make it clear with each search? Also, how do

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Am
Thank you for the advice. I believe I have everything defined, but came across other issues. I'm still getting an undefined message on top of the properties that do show up. If you search for San Fransisco, 3 properties are listed in the sidebar, along with the undefined message. I am awa

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Am
My page is located here: http://www.rentalmatch101.com.php5-20.dfw1-1.websitetestlink.com/googlemap.php Thank you for your help -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://g

[Google Maps API v3] Re: Add Sidebar to v3

2011-10-24 Thread Am
I followed the advice here: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/8cbba324e113df53/e2be32527134110e?lnk=gst&q=store+locator+sidebar#e2be32527134110e When I search for properties that are in my database, I get undefined in the sidebar, null(1.2) in the drop down

[Google Maps API v3] Add Sidebar to v3

2011-10-21 Thread Am
I'm having trouble finding the code or a tutorial for this. How do I add the sidebar to the v3 store locator instead of the drop down? Thank you for your help. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discus

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-21 Thread Am
Also, once the map goes to the ocean, I can't make another search. It gets "stuck" in the ocean. I have to shift + refresh to search again. What could be causing this issue? Thank you for your help. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaS

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-21 Thread Am
Thank you for the code. I added the code to my phpsqlsearch_genxml.php. I'm still having the issue with it going to the ocean. Is there a specific place in the code that I need to put that code? I put it at the end of the code. Could that be why it's not working? -- You received this message b

[Google Maps API v3] Re: Search always goes to Pacific Ocean

2011-10-17 Thread Am
Thank you for all the help. How do I make it so when I search for something that isn't in the database, it goes to the area on the map without markers, instead of the ocean? Meaning, if I search for Colorado, it goes to Colorado on the map and not the Pacific Ocean? Or just zoom out the map enou

[Google Maps API v3] Search always goes to Pacific Ocean

2011-10-14 Thread Am
Hi, I'm having trouble getting the sample code from the store locator page to work. I copied the HTML code from this page: http://gmaps-samples-v3.googlecode.com/svn/trunk/articles/phpsqlsearch/phpsqlsearch_map.html, and uploaded it to my own page. Every search I try takes me to the middle of

[Google Maps API v3] Can v3 have User Photos in Street View?

2010-10-26 Thread Am
Now I'm using map api v3. I want to use user photos feature in street view. How can I do that? All I've seen about user photos is just in v2 only. -- 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