The MapLarge built-in search box will do a search on any location and auto pan and zoom the map to that location. Valid locations are:

Street Address, City, State, Zip, Country
Lat, Long “34,-84”.

Example
  1. var map = ml.map("mapDiv",
  2. {
  3. lat: 33.70606265,
  4. lng:-84.4171367, z:10,
  5. api: 'LEAFLET',
  6. searchBox: true });
  7. });
Complete Example
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="/JS"></script>
  4. <script type="text/javascript">
  5. ml.onload(function() {
  6. var map = ml.map("mapDiv",
  7. {
  8. lat: 33.70606265,
  9. lng:-84.4171367, z:10,
  10. api: 'LEAFLET',
  11. searchBox: true });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <div id="mapDiv" style="width:100%;height:100%;"></div>
  17. </body>
  18. </html>