How to integrate SearchBox in Google Maps JavaScript API v3?
I would like to create a google map with search box on top like on this side: https://google-developers.appspot.com/... with the JavaScript API v3. At the moment I use the following code to show a map by getting the latitude and longitude in the url (php get): <?php $latitude = $_GET['lat']; $longitude = $_GET['long']; ?> <!DOCTYPE html> <html> <head> <script type="text/javascript"> </script> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <style type="text/css"> html { height: 100% } body { height: 100%; margin: 0; padding: 0 } #map_canvas { height: 100% } #search-panel