I was sitting trying to do some mods on a Queclink GL200 GPS transmitter for the MPS project. After many hours of no luck at all I gave up for the day. If anyone have some input on that please contact me!
So I started messing around with the Google Maps API demo that I made for them instead. Adding some auto complete to the search form instead. I thought I would share what I managed to do. The
challenge is to do a mach up of Google Maps API and jQuery to get it to work good.
The trick is to attach the jQuery handler to the object. Why? You have to create the search box dynamically in order to push it on top of the Google Maps canvas.
Entire demo can be found here: http://jsfiddle.net/kallsbo/XgsC6/
First initialize the map and all its settings:
var map;
var addressField;
var geocoder;
$(document).ready(function () {
var mapOptions = {
center: new google.maps.LatLng(57.698254, 12.037024),
zoom: 16,
mapTypeId: google.maps.MapTypeId.HYBRID,
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: true,
overviewMapControl: true
};
map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
geocoder = new google.maps.Geocoder();
initSearchBox();
});
function initSearchBox() {
var searchControlDiv = document.createElement('div');
var searchControl = new SearchControl(searchControlDiv, map);
searchControlDiv.index = 1;
map.controls[google.maps.ControlPosition.TOP_CENTER].push(searchControlDiv);
}
As you can see we initialize the search box control and put it in a div at the top of the canvas. This is how we create the control and it's auto complete function:
function SearchControl(controlDiv, map) {
controlDiv.style.padding = '5px';
var controlUI = document.createElement('div');
controlUI.style.backgroundColor = 'white';
controlUI.style.borderStyle = 'solid';
controlUI.style.borderWidth = '2px';
controlUI.style.cursor = 'pointer';
controlUI.style.textAlign = 'center';
controlUI.title = 'Sök ex: gatunamn, stad';
controlDiv.appendChild(controlUI);
var controlSearchBox = document.createElement('input');
controlSearchBox.id = 'search_address';
controlSearchBox.size = '80';
controlSearchBox.type = 'text';
So when you have gotten this far in the code you have the search input box as a
VAR
. Now we can use that VAR
to attach the function for the auto complete to it:
$(function () {
$(controlSearchBox).autocomplete({
source: function (request, response) {
if (geocoder == null) {
geocoder = new google.maps.Geocoder();
}
geocoder.geocode({
'address': request.term
}, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var searchLoc = results[0].geometry.location;
var lat = results[0].geometry.location.lat();
var lng = results[0].geometry.location.lng();
var latlng = new google.maps.LatLng(lat, lng);
var bounds = results[0].geometry.bounds;
geocoder.geocode({
'latLng': latlng
}, function (results1, status1) {
if (status1 == google.maps.GeocoderStatus.OK) {
if (results1[1]) {
response($.map(results1, function (loc) {
return {
label: loc.formatted_address,
value: loc.formatted_address,
bounds: loc.geometry.bounds
}
}));
}
}
});
}
});
},
select: function (event, ui) {
var pos = ui.item.position;
var lct = ui.item.locType;
var bounds = ui.item.bounds;
if (bounds) {
map.fitBounds(bounds);
}
}
});
});
Then finish up creating the object and push it the the Google Maps Canvas
as a custom control:
var controlText = document.createElement('div');
controlText.style.fontFamily = 'Arial,sans-serif';
controlText.style.fontSize = '12px';
controlText.style.paddingLeft = '4px';
controlText.style.paddingRight = '4px';
controlText.appendChild(controlSearchBox);
controlUI.appendChild(controlText);
}