2011-07-29 18:48:43 +00:00
|
|
|
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
2011-04-27 07:13:12 +00:00
|
|
|
|
2011-05-05 18:02:56 +00:00
|
|
|
/*@
|
|
|
|
Ox.Map <function> Basic map object
|
|
|
|
# DESCRIPTION --------------------------------------------------------------
|
|
|
|
<code>Ox.Map</code> is a wrapper around the
|
|
|
|
<a href="http://code.google.com/apis/maps/documentation/javascript/">Google
|
|
|
|
Maps API</a>.
|
|
|
|
# USAGE --------------------------------------------------------------------
|
|
|
|
() -> <f> Map object
|
|
|
|
(options) -> <f> Map object
|
|
|
|
(options, self) -> <f> Map object
|
|
|
|
# ARGUMENTS ----------------------------------------------------------------
|
|
|
|
options <o|{}> options
|
|
|
|
clickable <b|false> If true, clicking on the map finds a place
|
|
|
|
editable <b|false> If true, places are editable
|
|
|
|
findPlaceholder <s|"Find"> Placeholder text for the find input element
|
2011-05-29 09:52:33 +00:00
|
|
|
maxMarkers <n|100> Maximum number of markers to be displayed
|
|
|
|
places <[o]|f|null> Array of, or function that returns, place objects
|
2011-05-05 18:02:56 +00:00
|
|
|
countryCode <s> ISO 3166 country code
|
|
|
|
east <n> Longitude of the eastern boundary in degrees
|
|
|
|
editable <b|false> If true, the place is editable
|
|
|
|
geoname <s> Geoname (like "Paris, Île-de-France, France")
|
|
|
|
lat <n> Latitude in degrees
|
|
|
|
lng <n> Longitude in degrees
|
|
|
|
markerColor <s|"red"> CSS color of the place marker
|
|
|
|
markerSize <n|16> size of the place marker in px
|
|
|
|
name <s> Name (like "Paris")
|
|
|
|
north <n> Latitude of the northern boundary in degrees
|
|
|
|
south <n> Latitude of the southern boundary in degrees
|
|
|
|
type <s> Type (like "city" or "country")
|
|
|
|
west <n> Longitude of the western boundary in degrees
|
|
|
|
selected <s|""> Id of the selected place
|
2011-05-22 12:39:57 +00:00
|
|
|
showControls <b|false> If true, show controls
|
|
|
|
showLabels <b|false> If true, show labels on the map
|
2011-05-30 18:57:22 +00:00
|
|
|
showTypes <b|false> If true, color markers according to place type
|
2011-05-05 18:02:56 +00:00
|
|
|
statusbar <b|false> If true, the map has a statusbar
|
|
|
|
toolbar <b|false> If true, the map has a toolbar
|
2011-09-30 10:34:33 +00:00
|
|
|
zoombar <b|false> If true, the map has a zoombar
|
2011-05-05 18:02:56 +00:00
|
|
|
self <o|{}> Shared private variable
|
|
|
|
# EVENTS -------------------------------------------------------------------
|
|
|
|
addplace <!> Fires when a place has been added
|
|
|
|
place <o> Place object
|
|
|
|
editplace <!> Fires when a place has been edited
|
|
|
|
place <o> Place object
|
|
|
|
geocode <!> Fires when a google geocode request returns
|
|
|
|
latLng <o|u> Query coordinates, or undefined
|
|
|
|
lat <n> latitude
|
|
|
|
lng <n> longitude
|
|
|
|
address <s|u> Query string, or undefined
|
|
|
|
results <[o]> Google Maps geocode results
|
|
|
|
address_components <[o]> Address components
|
|
|
|
long_name <s> Long name
|
|
|
|
short_name <s> Short name
|
|
|
|
types <[s]> Types (like "country" or "political")
|
|
|
|
formatted_address <s> Formatted address
|
|
|
|
geometry <o> Geometry
|
|
|
|
bounds <o> Bounds
|
|
|
|
northEast <o> North-east corner
|
|
|
|
lat <n> Latitude
|
|
|
|
lng <n> Longitude
|
|
|
|
southWest <o> South-west corner
|
|
|
|
lat <n> Latitude
|
|
|
|
lng <n> Longitude
|
|
|
|
location <o> Location
|
|
|
|
lat <n> Latitude
|
|
|
|
lng <n> Longitude
|
|
|
|
location_type <s> Location type (like "APPROXIMATE")
|
|
|
|
viewport <o> Viewport
|
|
|
|
northEast <o> North-east corner
|
|
|
|
lat <n> Latitude
|
|
|
|
lng <n> Longitude
|
|
|
|
southWest <o> South-west corner
|
|
|
|
lat <n> Latitude
|
|
|
|
lng <n> Longitude
|
|
|
|
types <[s]> Types (like "country" or "political")
|
2011-09-30 10:34:33 +00:00
|
|
|
selectplace <!> Fires when a place has been selected or deselected
|
|
|
|
place <o> Place object
|
2011-05-05 18:02:56 +00:00
|
|
|
# EXAMPLES -----------------------------------------------------------------
|
|
|
|
<script>
|
|
|
|
// simple
|
|
|
|
Ox.load('UI', function() {
|
|
|
|
Ox.Map().appendTo(Ox.UI.$body);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
> Ox.Map() === true
|
|
|
|
false
|
|
|
|
> Ox.Map() === false
|
|
|
|
false
|
|
|
|
@*/
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
Ox.Map = function(options, self) {
|
|
|
|
|
2011-04-27 19:24:33 +00:00
|
|
|
self = self || {};
|
2011-06-19 17:48:32 +00:00
|
|
|
var that = Ox.Element({}, self)
|
2011-04-27 19:24:33 +00:00
|
|
|
.defaults({
|
|
|
|
// fixme: isClickable? hasZoombar?
|
2011-05-06 22:47:17 +00:00
|
|
|
clickable: false,
|
2011-04-27 19:24:33 +00:00
|
|
|
editable: false,
|
|
|
|
findPlaceholder: 'Find',
|
2011-05-29 09:52:33 +00:00
|
|
|
maxMarkers: 100,
|
|
|
|
places: null,
|
2011-04-27 19:24:33 +00:00
|
|
|
selected: null,
|
2011-05-22 12:39:57 +00:00
|
|
|
showControls: false,
|
|
|
|
showLabels: false,
|
2011-05-30 18:57:22 +00:00
|
|
|
showTypes: false,
|
2011-04-27 19:24:33 +00:00
|
|
|
statusbar: false,
|
|
|
|
toolbar: false,
|
|
|
|
zoombar: false
|
2011-09-30 10:34:33 +00:00
|
|
|
// fixme: width, height
|
2011-04-27 19:24:33 +00:00
|
|
|
})
|
|
|
|
.options(options || {})
|
|
|
|
.addClass('OxMap')
|
|
|
|
.click(function(e) {
|
|
|
|
!$(e.target).is('input') && that.gainFocus();
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
key_0: function() {
|
|
|
|
that.panToPlace()
|
|
|
|
},
|
|
|
|
key_down: function() {
|
|
|
|
pan(0, 1);
|
|
|
|
},
|
|
|
|
key_enter: pressEnter,
|
|
|
|
key_escape: pressEscape,
|
|
|
|
key_equal: function() {
|
|
|
|
zoom(1);
|
|
|
|
},
|
|
|
|
key_l: toggleLabels,
|
|
|
|
key_left: function() {
|
|
|
|
pan(-1, 0);
|
|
|
|
},
|
|
|
|
key_meta: function() {
|
|
|
|
self.metaKey = true;
|
|
|
|
$(document).one({
|
|
|
|
keyup: function() {
|
|
|
|
self.metaKey = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
key_minus: function() {
|
|
|
|
zoom(-1);
|
|
|
|
},
|
|
|
|
key_right: function() {
|
|
|
|
pan(1, 0);
|
|
|
|
},
|
|
|
|
key_shift: function() {
|
|
|
|
self.shiftKey = true;
|
|
|
|
$(document).one({
|
|
|
|
keyup: function() {
|
|
|
|
self.shiftKey = false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
key_shift_down: function() {
|
|
|
|
pan(0, 2);
|
|
|
|
},
|
|
|
|
key_shift_0: function() {
|
|
|
|
that.zoomToPlace();
|
|
|
|
},
|
|
|
|
key_shift_equal: function() {
|
2011-06-20 13:17:40 +00:00
|
|
|
zoom(2);
|
2011-04-27 19:24:33 +00:00
|
|
|
},
|
|
|
|
key_shift_left: function() {
|
|
|
|
pan(-2, 0);
|
|
|
|
},
|
|
|
|
key_shift_minus: function() {
|
|
|
|
zoom(-2);
|
|
|
|
},
|
|
|
|
key_shift_right: function() {
|
|
|
|
pan(2, 0);
|
|
|
|
},
|
|
|
|
key_shift_up: function() {
|
|
|
|
pan(0, -2);
|
|
|
|
},
|
|
|
|
key_up: function() {
|
|
|
|
pan(0, -1);
|
|
|
|
},
|
|
|
|
key_z: undo
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-05-29 09:52:33 +00:00
|
|
|
self.isAsync = Ox.isFunction(self.options.places);
|
2011-04-22 22:03:10 +00:00
|
|
|
self.mapHeight = getMapHeight();
|
|
|
|
self.minZoom = getMinZoom();
|
2011-05-30 12:06:58 +00:00
|
|
|
self.placeKeys = [
|
|
|
|
'id', 'name', 'alternativeNames', 'geoname', 'countryCode', 'type',
|
|
|
|
'lat', 'lng', 'south', 'west', 'north', 'east', 'area',
|
|
|
|
'editable'
|
2011-06-20 13:17:40 +00:00
|
|
|
];
|
2011-04-22 22:03:10 +00:00
|
|
|
self.scaleMeters = [
|
|
|
|
50000000, 20000000, 10000000,
|
|
|
|
5000000, 2000000, 1000000,
|
|
|
|
500000, 200000, 100000,
|
|
|
|
50000, 20000, 10000,
|
|
|
|
5000, 2000, 1000,
|
|
|
|
500, 200, 100,
|
|
|
|
50, 20, 10
|
|
|
|
];
|
|
|
|
|
|
|
|
Ox.extend(self, {
|
|
|
|
metaKey: false,
|
|
|
|
resultPlace: null,
|
|
|
|
shiftKey: false
|
|
|
|
});
|
|
|
|
|
|
|
|
if (self.options.toolbar) {
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$toolbar = Ox.Bar({
|
2011-04-22 22:03:10 +00:00
|
|
|
size: 24
|
|
|
|
})
|
|
|
|
.appendTo(that);
|
2011-05-22 12:39:57 +00:00
|
|
|
self.$select = Ox.Select({
|
|
|
|
items: [
|
|
|
|
{id: 'new Place', title: 'New Place...', keyboard: 'n'},
|
|
|
|
{},
|
|
|
|
{id: 'toggleLabels', title: 'Show Labels', keyboard: 'l', checked: self.options.showLabels},
|
|
|
|
{id: 'toggleControls', title: 'Show Controls', keyboard: 'c', checked: self.options.showControls},
|
|
|
|
],
|
|
|
|
min: 0,
|
|
|
|
max: 2,
|
|
|
|
title: 'Options...',
|
|
|
|
width: 96
|
|
|
|
})
|
|
|
|
.css({float: 'left', margin: '4px'})
|
|
|
|
.appendTo(self.$toolbar);
|
|
|
|
/*
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$labelsButton = Ox.Checkbox({
|
2011-05-21 07:08:52 +00:00
|
|
|
title: 'Labels',
|
|
|
|
width: 64
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.css({float: 'left', margin: '4px'})
|
|
|
|
.bindEvent({
|
2011-05-21 07:08:52 +00:00
|
|
|
change: toggleLabels
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.appendTo(self.$toolbar)
|
2011-05-22 12:39:57 +00:00
|
|
|
*/
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$findInput = Ox.Input({
|
2011-04-22 22:03:10 +00:00
|
|
|
clear: true,
|
|
|
|
placeholder: self.options.findPlaceholder,
|
|
|
|
width: 192
|
|
|
|
})
|
|
|
|
.css({float: 'right', margin: '4px'})
|
|
|
|
.bindEvent({
|
|
|
|
submit: submitFind
|
|
|
|
})
|
|
|
|
.appendTo(self.$toolbar)
|
|
|
|
}
|
|
|
|
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$map = Ox.Element()
|
2011-04-22 22:03:10 +00:00
|
|
|
.css({
|
|
|
|
left: 0,
|
|
|
|
top: self.options.toolbar * 24 + 'px',
|
|
|
|
right: 0,
|
|
|
|
bottom: self.options.zoombar * 16 + self.options.statusbar * 24 + 'px'
|
|
|
|
})
|
|
|
|
.appendTo(that);
|
|
|
|
|
|
|
|
if (self.options.zoombar) {
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$zoombar = Ox.Bar({
|
2011-04-22 22:03:10 +00:00
|
|
|
size: 16
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
bottom: self.options.statusbar * 24 + 'px'
|
|
|
|
})
|
|
|
|
.appendTo(that);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self.options.statusbar) {
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$statusbar = Ox.Bar({
|
2011-04-22 22:03:10 +00:00
|
|
|
size: 24
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
bottom: 0
|
|
|
|
})
|
|
|
|
.appendTo(that);
|
2011-05-22 17:12:21 +00:00
|
|
|
self.$placeFlag = $('<img>')
|
|
|
|
.addClass('OxFlag')
|
|
|
|
.attr({
|
|
|
|
src: Ox.PATH + 'Ox.Geo/png/icons/16/NTHH.png'
|
|
|
|
})
|
|
|
|
.css({float: 'left', margin: '4px 2px 4px 4px'})
|
|
|
|
.appendTo(self.$statusbar.$element);
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$placeNameInput = Ox.Input({
|
2011-04-22 22:03:10 +00:00
|
|
|
placeholder: 'Name',
|
|
|
|
width: 96
|
|
|
|
})
|
|
|
|
//.css({position: 'absolute', left: 4, top: 4})
|
2011-05-22 17:12:21 +00:00
|
|
|
.css({float: 'left', margin: '4px 2px 4px 2px'})
|
2011-04-22 22:03:10 +00:00
|
|
|
.appendTo(self.$statusbar);
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$placeGeonameInput = Ox.Input({
|
2011-04-22 22:03:10 +00:00
|
|
|
placeholder: 'Geoname',
|
|
|
|
width: 96
|
|
|
|
})
|
|
|
|
//.css({position: 'absolute', left: 104, top: 4})
|
2011-05-22 17:12:21 +00:00
|
|
|
.css({float: 'left', margin: '4px 2px 4px 2px'})
|
2011-04-22 22:03:10 +00:00
|
|
|
.appendTo(self.$statusbar);
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$placeButton = Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
title: 'New Place',
|
|
|
|
width: 96
|
|
|
|
})
|
|
|
|
.css({float: 'right', margin: '4px 4px 4px 2px'})
|
|
|
|
.bindEvent({
|
|
|
|
click: clickPlaceButton
|
|
|
|
})
|
|
|
|
.appendTo(self.$statusbar);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.$navigationButtons = {
|
2011-06-19 17:48:32 +00:00
|
|
|
'center': Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
title: 'close',
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.addClass('OxMapButton')
|
|
|
|
.css({
|
|
|
|
left: '24px',
|
|
|
|
top: '24px'
|
|
|
|
}),
|
2011-06-19 17:48:32 +00:00
|
|
|
'east': Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
title: 'right',
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.addClass('OxMapButton')
|
|
|
|
.css({
|
|
|
|
left: '44px',
|
|
|
|
top: '24px',
|
|
|
|
}),
|
2011-06-19 17:48:32 +00:00
|
|
|
'north': Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
title: 'up',
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.addClass('OxMapButton')
|
|
|
|
.css({
|
|
|
|
left: '24px',
|
|
|
|
top: '4px',
|
|
|
|
}),
|
2011-06-19 17:48:32 +00:00
|
|
|
'south': Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
title: 'down',
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.addClass('OxMapButton')
|
|
|
|
.css({
|
|
|
|
left: '24px',
|
|
|
|
top: '44px',
|
|
|
|
}),
|
2011-06-19 17:48:32 +00:00
|
|
|
'west': Ox.Button({
|
2011-04-22 22:03:10 +00:00
|
|
|
title: 'left',
|
|
|
|
type: 'image'
|
|
|
|
})
|
|
|
|
.addClass('OxMapButton')
|
|
|
|
.css({
|
|
|
|
left: '4px',
|
|
|
|
top: '24px',
|
|
|
|
})
|
|
|
|
};
|
2011-05-22 12:39:57 +00:00
|
|
|
Ox.forEach(self.$navigationButtons, function($button) {
|
|
|
|
$button.attr({
|
|
|
|
src: $button.attr('src').replace('/classic/', '/modern/')
|
|
|
|
});
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$scaleLabel = Ox.Label({
|
2011-04-22 22:03:10 +00:00
|
|
|
textAlign: 'center',
|
2011-09-30 10:34:33 +00:00
|
|
|
title: '...' // fixme ???
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
.addClass('OxMapLabel')
|
2011-05-22 12:39:57 +00:00
|
|
|
.css({right: '4px', top: '4px'});
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-05-29 09:52:33 +00:00
|
|
|
if (!self.isAsync) {
|
|
|
|
self.options.places.forEach(function(place) {
|
|
|
|
if (Ox.isUndefined(place.id)) {
|
|
|
|
place.id = Ox.encodeBase32(Ox.uid());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
if (!window.googleCallback) {
|
|
|
|
window.googleCallback = function() {
|
|
|
|
delete window.googleCallback;
|
|
|
|
initMap();
|
|
|
|
};
|
|
|
|
$.getScript('http://maps.google.com/maps/api/js?callback=googleCallback&sensor=false');
|
|
|
|
} else {
|
|
|
|
(function interval() {
|
|
|
|
window.google ? initMap() : setTimeout(interval, 100);
|
|
|
|
}());
|
|
|
|
}
|
|
|
|
|
|
|
|
function addPlaceToMap(place) {
|
2011-06-14 14:45:29 +00:00
|
|
|
// via find, click, shift-click, or new place button
|
|
|
|
Ox.print('addPlaceToMap', place)
|
2011-06-14 14:41:20 +00:00
|
|
|
var exists = false;
|
2011-04-22 22:03:10 +00:00
|
|
|
if (!place) {
|
2011-06-14 14:41:20 +00:00
|
|
|
var bounds = self.map.getBounds(),
|
|
|
|
center = self.map.getCenter(),
|
2011-04-22 22:03:10 +00:00
|
|
|
southwest = new google.maps.LatLngBounds(
|
|
|
|
bounds.getSouthWest(), center
|
|
|
|
).getCenter(),
|
|
|
|
northeast = new google.maps.LatLngBounds(
|
|
|
|
center, bounds.getNorthEast()
|
|
|
|
).getCenter(),
|
2011-06-20 12:53:00 +00:00
|
|
|
place = new Ox.MapPlace({
|
2011-06-01 13:25:07 +00:00
|
|
|
alternativeNames: [],
|
2011-04-22 22:03:10 +00:00
|
|
|
countryCode: '',
|
|
|
|
editable: true,
|
|
|
|
geoname: '',
|
2011-05-29 17:44:48 +00:00
|
|
|
id: '_' + Ox.encodeBase32(Ox.uid()), // fixme: stupid
|
2011-04-22 22:03:10 +00:00
|
|
|
map: that,
|
|
|
|
name: '',
|
2011-06-01 12:08:29 +00:00
|
|
|
type: 'feature',
|
2011-04-22 22:03:10 +00:00
|
|
|
south: southwest.lat(),
|
|
|
|
west: southwest.lng(),
|
|
|
|
north: northeast.lat(),
|
|
|
|
east: northeast.lng()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Ox.forEach(self.places, function(p, i) {
|
|
|
|
if (place.bounds.equals(p.bounds)) {
|
|
|
|
place = p;
|
|
|
|
exists = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (!exists) {
|
2011-04-27 07:13:12 +00:00
|
|
|
self.resultPlace && self.resultPlace.remove();
|
2011-04-22 22:03:10 +00:00
|
|
|
self.resultPlace = place;
|
|
|
|
place.add();
|
|
|
|
}
|
|
|
|
selectPlace(place.id);
|
|
|
|
}
|
|
|
|
|
2011-05-24 08:40:17 +00:00
|
|
|
function addPlaceToPlaces(data) {
|
2011-05-24 11:43:27 +00:00
|
|
|
var place = getSelectedPlace(),
|
|
|
|
country = Ox.getCountryByGeoname(place.geoname);
|
2011-05-24 08:40:17 +00:00
|
|
|
Ox.extend(place, data);
|
2011-05-29 17:44:48 +00:00
|
|
|
self.options.selected = place.id;
|
2011-05-24 11:43:27 +00:00
|
|
|
place.countryCode = country ? country.code : '';
|
2011-05-29 17:44:48 +00:00
|
|
|
Ox.print('addP2P', data, place);
|
2011-04-22 22:03:10 +00:00
|
|
|
place.marker.update();
|
|
|
|
self.places.push(place);
|
|
|
|
self.resultPlace = null;
|
|
|
|
that.triggerEvent('addplace', place)
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('SSSS', self.options.selected)
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function boundsChanged() {
|
|
|
|
setScale();
|
|
|
|
self.boundsChanged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function canContain(outerBounds, innerBounds) {
|
2011-04-29 14:56:40 +00:00
|
|
|
// checks if outerBounds _can_ contain innerBounds
|
2011-04-22 22:03:10 +00:00
|
|
|
var outerSpan = outerBounds.toSpan(),
|
|
|
|
innerSpan = innerBounds.toSpan();
|
|
|
|
return outerSpan.lat() > innerSpan.lat() &&
|
|
|
|
outerSpan.lng() > innerSpan.lng();
|
|
|
|
}
|
|
|
|
|
|
|
|
function centerChanged() {
|
|
|
|
self.center = self.map.getCenter();
|
|
|
|
self.centerChanged = true;
|
|
|
|
}
|
|
|
|
|
2011-09-17 17:39:38 +00:00
|
|
|
function changeZoom(data) {
|
2011-04-22 22:03:10 +00:00
|
|
|
self.map.setZoom(data.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function clickMap(event) {
|
|
|
|
if (self.options.clickable/* && !editing()*/) {
|
|
|
|
getPlaceByLatLng(event.latLng, self.map.getBounds(), function(place) {
|
|
|
|
if (place) {
|
|
|
|
addPlaceToMap(place);
|
|
|
|
//selectPlace(place.id);
|
|
|
|
} else {
|
|
|
|
selectPlace(null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function clickPlaceButton() {
|
|
|
|
var place = getSelectedPlace(),
|
|
|
|
title = self.$placeButton.options('title');
|
|
|
|
if (title == 'New Place') {
|
|
|
|
addPlaceToMap();
|
|
|
|
} else if (title == 'Add Place') {
|
|
|
|
addPlaceToPlaces();
|
|
|
|
} else if (title == 'Remove Place') {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function constructZoomInput() {
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('constructZoomInput', self.minZoom, self.maxZoom)
|
2011-04-22 22:03:10 +00:00
|
|
|
if (self.options.zoombar) {
|
|
|
|
self.$zoomInput && self.$zoomInput.removeElement();
|
2011-06-19 17:48:32 +00:00
|
|
|
self.$zoomInput = Ox.Range({
|
2011-04-22 22:03:10 +00:00
|
|
|
arrows: true,
|
|
|
|
max: self.maxZoom,
|
|
|
|
min: self.minZoom,
|
|
|
|
size: that.width(),
|
|
|
|
thumbSize: 32,
|
|
|
|
thumbValue: true,
|
|
|
|
value: self.map.getZoom()
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
change: changeZoom
|
|
|
|
})
|
|
|
|
.appendTo(self.$zoombar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function editing() {
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
return place && place.editing;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getElevation(point, callback) {
|
|
|
|
// fixme: unused
|
|
|
|
if (arguments.length == 1) {
|
|
|
|
callback = point;
|
|
|
|
point = self.map.getCenter();
|
|
|
|
}
|
|
|
|
self.elevationService.getElevationForLocations({
|
|
|
|
locations: [point]
|
|
|
|
}, function(data) {
|
|
|
|
callback(data.elevation);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-05-29 09:52:33 +00:00
|
|
|
function getMapBounds(callback) {
|
|
|
|
// get initial map bounds
|
|
|
|
var mapBounds;
|
|
|
|
if (!self.isAsync) {
|
|
|
|
self.options.places.forEach(function(place, i) {
|
|
|
|
var bounds = getBounds(place);
|
|
|
|
mapBounds = i == 0 ? bounds : mapBounds.union(bounds);
|
|
|
|
});
|
|
|
|
callback(mapBounds);
|
|
|
|
} else {
|
|
|
|
self.options.places({}, function(result) {
|
2011-05-29 20:23:16 +00:00
|
|
|
callback(getBounds(result.data.area));
|
2011-05-29 09:52:33 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
function getBounds(place) {
|
|
|
|
return new google.maps.LatLngBounds(
|
|
|
|
new google.maps.LatLng(place.south, place.west),
|
|
|
|
new google.maps.LatLng(place.north, place.east)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
function getMapHeight() {
|
2011-09-30 10:34:33 +00:00
|
|
|
return self.options.height
|
|
|
|
- self.options.statusbar * 24
|
|
|
|
- self.options.toolbar * 24
|
|
|
|
- self.options.zoombar * 16;
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getMapType() {
|
2011-05-22 12:39:57 +00:00
|
|
|
return self.options.showLabels ? 'HYBRID' : 'SATELLITE'
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getMaxZoom(point, callback) {
|
|
|
|
if (arguments.length == 1) {
|
|
|
|
callback = point;
|
|
|
|
point = self.map.getCenter();
|
|
|
|
}
|
|
|
|
self.maxZoomService.getMaxZoomAtLatLng(point, function(data) {
|
|
|
|
callback(data.status == 'OK' ? data.zoom : null);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-05-24 08:40:17 +00:00
|
|
|
function getMetersPerPixel() {
|
2011-09-30 10:34:33 +00:00
|
|
|
// fixme: this is wrong when resizing the map horizontally
|
2011-05-24 08:40:17 +00:00
|
|
|
var mapWidth = self.$map.width(),
|
|
|
|
span = self.map.getBounds().toSpan().lng();
|
2011-09-30 10:34:33 +00:00
|
|
|
/*
|
2011-05-24 08:40:17 +00:00
|
|
|
if (span >= 360) {
|
|
|
|
span = 360 * mapWidth / Ox.MAP_TILE_SIZE;
|
|
|
|
}
|
2011-09-30 10:34:33 +00:00
|
|
|
*/
|
|
|
|
return Ox.getMetersPerDegree(self.map.getCenter().lat()) * span / mapWidth;
|
2011-05-24 08:40:17 +00:00
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
function getMinZoom() {
|
2011-09-30 10:34:33 +00:00
|
|
|
return self.mapHeight > 1024 ? 3
|
|
|
|
: self.mapHeight > 512 ? 2
|
|
|
|
: self.mapHeight > 256 ? 1
|
|
|
|
: 0;
|
|
|
|
// fixme: there must be a function for this...
|
|
|
|
/*
|
2011-04-22 22:03:10 +00:00
|
|
|
return Math.ceil(
|
|
|
|
Ox.log(self.mapHeight / Ox.MAP_TILE_SIZE, 2)
|
|
|
|
);
|
2011-09-30 10:34:33 +00:00
|
|
|
*/
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getPlaceById(id) {
|
|
|
|
var place = Ox.getObjectById(self.places, id);
|
|
|
|
if (!place && self.resultPlace && self.resultPlace.id == id) {
|
|
|
|
place = self.resultPlace;
|
|
|
|
}
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('getPlaceById', id, place)
|
2011-04-22 22:03:10 +00:00
|
|
|
return place;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPlaceByLatLng(latlng, bounds, callback) {
|
2011-04-29 14:56:40 +00:00
|
|
|
// gets the largest place at latlng that would fit in bounds
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('ll b', latlng, bounds)
|
2011-04-22 22:03:10 +00:00
|
|
|
var callback = arguments.length == 3 ? callback : bounds,
|
|
|
|
bounds = arguments.length == 3 ? bounds : null;
|
|
|
|
self.geocoder.geocode({
|
|
|
|
latLng: latlng
|
|
|
|
}, function(results, status) {
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('results', results)
|
2011-04-22 22:03:10 +00:00
|
|
|
var length = results.length;
|
|
|
|
if (status == google.maps.GeocoderStatus.OK) {
|
2011-04-29 14:56:40 +00:00
|
|
|
if (bounds) {
|
|
|
|
Ox.forEach(results.reverse(), function(result, i) {
|
|
|
|
if (
|
|
|
|
i == length - 1 ||
|
|
|
|
canContain(bounds, result.geometry.bounds || result.geometry.viewport)
|
|
|
|
) {
|
2011-06-20 12:53:00 +00:00
|
|
|
callback(new Ox.MapPlace(parseGeodata(results[i])));
|
2011-04-29 14:56:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
} else {
|
2011-06-20 12:53:00 +00:00
|
|
|
callback(new Ox.MapPlace(parseGeodata(results[0])));
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
2011-04-29 14:56:40 +00:00
|
|
|
}
|
|
|
|
if (
|
|
|
|
status == google.maps.GeocoderStatus.OK ||
|
|
|
|
status == google.maps.GeocoderStatus.ZERO_RESULTS
|
|
|
|
) {
|
|
|
|
triggerGeocodeEvent({
|
|
|
|
latLng: latlng,
|
|
|
|
results: results
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
} else {
|
2011-04-29 14:56:40 +00:00
|
|
|
Ox.print('geocode failed:', status);
|
2011-04-22 22:03:10 +00:00
|
|
|
callback(null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPlaceByName(name, callback) {
|
|
|
|
self.geocoder.geocode({
|
|
|
|
address: name
|
|
|
|
}, function(results, status) {
|
|
|
|
if (status == google.maps.GeocoderStatus.OK) {
|
2011-06-20 12:53:00 +00:00
|
|
|
callback(new Ox.MapPlace(parseGeodata(results[0])));
|
2011-04-29 14:56:40 +00:00
|
|
|
}
|
|
|
|
if (
|
|
|
|
status == google.maps.GeocoderStatus.OK ||
|
|
|
|
status == google.maps.GeocoderStatus.ZERO_RESULTS
|
|
|
|
) {
|
|
|
|
triggerGeocodeEvent({
|
|
|
|
address: name,
|
|
|
|
results: results
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
} else {
|
|
|
|
Ox.print('geocode failed:', status);
|
|
|
|
callback(null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getPositionByName(name) {
|
|
|
|
var position = -1;
|
|
|
|
Ox.forEach(self.options.places, function(place, i) {
|
|
|
|
if (place.name == name) {
|
|
|
|
position = i;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSelectedMarker() {
|
|
|
|
// needed in case self.options.selected
|
|
|
|
// is changed from outside
|
|
|
|
var id = null;
|
|
|
|
if (self.resultPlace && self.resultPlace.selected) {
|
|
|
|
id = self.resultPlace.id;
|
|
|
|
} else {
|
|
|
|
Ox.forEach(self.places, function(place) {
|
|
|
|
if (place.selected) {
|
|
|
|
id = place.id;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSelectedPlace() {
|
|
|
|
return self.options.selected ?
|
|
|
|
getPlaceById(self.options.selected) : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function initMap() {
|
|
|
|
|
2011-05-29 09:52:33 +00:00
|
|
|
getMapBounds(function(mapBounds) {
|
|
|
|
|
|
|
|
Ox.print('init', mapBounds.getSouthWest(), mapBounds.getNorthEast(), mapBounds.getCenter())
|
|
|
|
|
|
|
|
updateFormElements();
|
|
|
|
|
|
|
|
self.elevationService = new google.maps.ElevationService();
|
|
|
|
self.geocoder = new google.maps.Geocoder();
|
|
|
|
self.maxZoomService = new google.maps.MaxZoomService();
|
|
|
|
|
|
|
|
self.center = mapBounds ? mapBounds.getCenter() : new google.maps.LatLng(0, 0);
|
|
|
|
self.zoom = 1; // fixme: should depend on height
|
|
|
|
that.map = self.map = new google.maps.Map(self.$map.$element[0], {
|
|
|
|
center: self.center,
|
|
|
|
disableDefaultUI: true,
|
|
|
|
disableDoubleClickZoom: true,
|
|
|
|
mapTypeId: google.maps.MapTypeId[getMapType()],
|
|
|
|
zoom: self.zoom
|
|
|
|
});
|
|
|
|
google.maps.event.addListener(self.map, 'bounds_changed', boundsChanged);
|
|
|
|
google.maps.event.addListener(self.map, 'center_changed', centerChanged);
|
|
|
|
google.maps.event.addListener(self.map, 'click', clickMap);
|
|
|
|
google.maps.event.addListener(self.map, 'idle', mapChanged);
|
|
|
|
google.maps.event.addListener(self.map, 'zoom_changed', zoomChanged);
|
|
|
|
google.maps.event.addListenerOnce(self.map, 'tilesloaded', tilesLoaded);
|
2011-09-30 10:34:33 +00:00
|
|
|
|
2011-05-29 09:52:33 +00:00
|
|
|
mapBounds && self.map.fitBounds(mapBounds);
|
2011-09-30 10:34:33 +00:00
|
|
|
if (self.map.getZoom() < self.minZoom) {
|
|
|
|
self.map.setZoom(self.minZoom);
|
|
|
|
}
|
2011-05-29 09:52:33 +00:00
|
|
|
|
|
|
|
self.places = [];
|
|
|
|
if (!self.isAsync) {
|
|
|
|
self.options.places.forEach(function(place, i) {
|
2011-06-20 12:53:00 +00:00
|
|
|
self.places[i] = new Ox.MapPlace(Ox.extend({
|
2011-05-29 09:52:33 +00:00
|
|
|
map: that
|
|
|
|
}, place));
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
2011-05-29 09:52:33 +00:00
|
|
|
google.maps.event.trigger(self.map, 'resize');
|
|
|
|
//that.gainFocus();
|
|
|
|
that.triggerEvent('load');
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
});
|
2011-05-29 09:52:33 +00:00
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
function tilesLoaded() {
|
|
|
|
// fixme: can add earlier, use don't replace map contents option
|
|
|
|
Ox.forEach(self.$navigationButtons, function(button) {
|
|
|
|
button.appendTo(self.$map);
|
|
|
|
});
|
|
|
|
self.$scaleLabel.appendTo(self.$map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapChanged() {
|
|
|
|
// gets called after panning or zooming
|
|
|
|
Ox.print('mapChanged');
|
|
|
|
var bounds;
|
|
|
|
if (self.boundsChanged) {
|
2011-05-29 20:23:16 +00:00
|
|
|
var bounds = self.map.getBounds(),
|
|
|
|
southWest = bounds.getSouthWest(),
|
|
|
|
northEast = bounds.getNorthEast(),
|
|
|
|
south = southWest.lat(),
|
|
|
|
west = southWest.lng(),
|
|
|
|
north = northEast.lat(),
|
|
|
|
east = northEast.lng(),
|
|
|
|
crossesDateline = west > east;
|
2011-05-29 09:52:33 +00:00
|
|
|
if (!self.isAsync) {
|
|
|
|
self.places.sort(function(a, b) {
|
|
|
|
var sort = {
|
|
|
|
a: a.selected ? Infinity :
|
|
|
|
bounds.contains(a.center) ? a.area : -Infinity,
|
|
|
|
b: b.selected ? Infinity :
|
|
|
|
bounds.contains(b.center) ? b.area : -Infinity,
|
|
|
|
};
|
|
|
|
return sort.b - sort.a;
|
|
|
|
}).forEach(function(place, i) {
|
|
|
|
if (i < self.options.maxMarkers && !place.visible) {
|
|
|
|
place.add();
|
|
|
|
} else if (i >= self.options.maxMarkers && place.visible) {
|
|
|
|
place.remove();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2011-05-29 23:00:26 +00:00
|
|
|
Ox.print('QUERY', {
|
|
|
|
conditions: Ox.merge([
|
|
|
|
{key: 'lat', value: [south, north], operator: '-'}
|
|
|
|
], !crossesDateline ? [
|
|
|
|
{key: 'lng', value: [west, east], operator: '-'}
|
|
|
|
] : [
|
|
|
|
{
|
|
|
|
conditions: [
|
|
|
|
{key: 'lng', value: west, operator: '<'},
|
|
|
|
{key: 'lng', value: east, operator: '>'}
|
|
|
|
],
|
|
|
|
operator: '|'
|
|
|
|
}
|
|
|
|
]),
|
|
|
|
operator: '&'
|
|
|
|
});
|
2011-05-29 09:52:33 +00:00
|
|
|
self.options.places({
|
2011-05-30 12:06:58 +00:00
|
|
|
keys: self.placeKeys,
|
2011-05-29 20:23:16 +00:00
|
|
|
query: {
|
|
|
|
conditions: Ox.merge([
|
2011-05-29 20:25:27 +00:00
|
|
|
{key: 'lat', value: [south, north], operator: '-'}
|
2011-05-29 20:23:16 +00:00
|
|
|
], !crossesDateline ? [
|
2011-05-29 20:25:27 +00:00
|
|
|
{key: 'lng', value: [west, east], operator: '-'}
|
2011-05-29 20:23:16 +00:00
|
|
|
] : [
|
2011-05-30 06:13:28 +00:00
|
|
|
{key: 'lng', value: [east, west], operator: '!-'}
|
2011-05-29 20:23:16 +00:00
|
|
|
]),
|
|
|
|
operator: '&'
|
|
|
|
},
|
2011-05-29 09:52:33 +00:00
|
|
|
range: [0, self.options.maxMarkers],
|
2011-05-30 06:13:28 +00:00
|
|
|
sort: [{key: 'area', operator: '-'}]
|
2011-05-29 09:52:33 +00:00
|
|
|
}, function(result) {
|
2011-05-29 23:00:26 +00:00
|
|
|
Ox.print('RESULT', result)
|
2011-05-29 09:52:33 +00:00
|
|
|
var ids = [];
|
|
|
|
result.data.items.forEach(function(item, i) {
|
|
|
|
var place = getPlaceById(item.id);
|
|
|
|
if (!place) {
|
|
|
|
self.places.push(
|
2011-06-20 12:53:00 +00:00
|
|
|
new Ox.MapPlace(Ox.extend({
|
2011-05-29 09:52:33 +00:00
|
|
|
map: that
|
|
|
|
}, item)).add()
|
|
|
|
);
|
|
|
|
} else if (!place.visible) {
|
|
|
|
place.add();
|
|
|
|
}
|
|
|
|
ids.push(item.id);
|
|
|
|
});
|
|
|
|
self.places.forEach(function(place) {
|
|
|
|
if (
|
|
|
|
!place.selected && place.visible
|
|
|
|
&& ids.indexOf(place.id) == -1
|
|
|
|
) {
|
|
|
|
place.remove();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2011-04-22 22:03:10 +00:00
|
|
|
self.boundsChanged = false;
|
|
|
|
}
|
|
|
|
if (self.centerChanged) {
|
|
|
|
getMaxZoom(function(zoom) {
|
2011-05-23 19:38:52 +00:00
|
|
|
if (zoom && zoom != self.maxZoom) {
|
2011-04-22 22:03:10 +00:00
|
|
|
self.maxZoom = zoom;
|
|
|
|
if (self.map.getZoom() > zoom) {
|
|
|
|
self.map.setZoom(zoom);
|
|
|
|
}
|
|
|
|
constructZoomInput();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
self.centerChanged = false;
|
|
|
|
}
|
|
|
|
if (self.zoomChanged) {
|
|
|
|
self.zoomChanged = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function pan(x, y) {
|
|
|
|
self.map.panBy(x * self.$map.width() / 2, y * self.$map.height() / 2);
|
|
|
|
};
|
|
|
|
|
|
|
|
function parseGeodata(data) {
|
|
|
|
var bounds = data.geometry.bounds || data.geometry.viewport,
|
2011-06-14 09:29:31 +00:00
|
|
|
northEast = bounds.getNorthEast(),
|
|
|
|
southWest = bounds.getSouthWest(),
|
2011-04-22 22:03:10 +00:00
|
|
|
place = {
|
2011-06-01 08:50:49 +00:00
|
|
|
alternativeNames: [],
|
2011-04-22 22:03:10 +00:00
|
|
|
components: data.address_components,
|
|
|
|
countryCode: getCountryCode(data.address_components),
|
2011-06-14 09:29:31 +00:00
|
|
|
east: northEast.lng(),
|
2011-04-22 22:03:10 +00:00
|
|
|
editable: self.options.editable,
|
|
|
|
fullGeoname: getFullGeoname(data.address_components),
|
|
|
|
geoname: data.formatted_address,
|
2011-05-29 17:44:48 +00:00
|
|
|
id: '_' + Ox.encodeBase32(Ox.uid()),
|
2011-04-22 22:03:10 +00:00
|
|
|
map: that,
|
|
|
|
name: data.formatted_address.split(', ')[0],
|
2011-06-14 09:29:31 +00:00
|
|
|
north: northEast.lat(),
|
|
|
|
south: southWest.lat(),
|
2011-05-30 11:47:30 +00:00
|
|
|
type: getType(data.address_components[0].types),
|
2011-06-14 09:29:31 +00:00
|
|
|
west: southWest.lng()
|
2011-04-22 22:03:10 +00:00
|
|
|
};
|
2011-06-14 09:38:58 +00:00
|
|
|
if (Math.abs(place.west) == 180 && Math.abs(place.east) == 180) {
|
2011-06-14 09:29:31 +00:00
|
|
|
place.west = -179.99999999;
|
|
|
|
place.east = 179.99999999;
|
|
|
|
}
|
2011-06-14 13:41:34 +00:00
|
|
|
place.south = Ox.limit(place.south, Ox.MIN_LATITUDE, Ox.MAX_LATITUDE - 0.00000001);
|
|
|
|
place.north = Ox.limit(place.north, Ox.MIN_LATITUDE + 0.00000001, Ox.MAX_LATITUDE);
|
2011-04-22 22:03:10 +00:00
|
|
|
function getCountryCode(components) {
|
|
|
|
countryCode = '';
|
|
|
|
Ox.forEach(components, function(component) {
|
|
|
|
if (component.types.indexOf('country') > -1) {
|
|
|
|
countryCode = component.short_name;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return countryCode;
|
|
|
|
}
|
|
|
|
function getFullGeoname(components) {
|
|
|
|
var country = false;
|
|
|
|
return components.map(function(component, i) {
|
|
|
|
var name = component.long_name;
|
|
|
|
if (i && components[i - 1].types.indexOf('country') > -1) {
|
|
|
|
country = true;
|
|
|
|
}
|
|
|
|
return !country && (
|
|
|
|
i == 0 || name != components[i - 1].long_name
|
|
|
|
) ? name : null;
|
2011-05-30 11:47:30 +00:00
|
|
|
}).join(', ');
|
|
|
|
}
|
|
|
|
function getType(types) {
|
|
|
|
Ox.print('getType', types)
|
|
|
|
// see http://code.google.com/apis/maps/documentation/javascript/services.html#GeocodingAddressTypes
|
|
|
|
var strings = {
|
|
|
|
'country': ['country'],
|
2011-06-14 09:38:58 +00:00
|
|
|
'region': ['administrative_area', 'colloquial_area'],
|
2011-05-30 11:47:30 +00:00
|
|
|
'city': ['locality'],
|
2011-06-01 10:48:11 +00:00
|
|
|
'borough': ['neighborhood', 'postal_code', 'sublocality'],
|
2011-05-30 11:47:30 +00:00
|
|
|
'street': [
|
|
|
|
'intersection', 'route',
|
|
|
|
'street_address', 'street_number'
|
|
|
|
],
|
2011-06-01 10:48:11 +00:00
|
|
|
'building': [
|
|
|
|
'airport', 'establishment', 'floor',
|
|
|
|
'premise', 'room', 'subpremise'
|
|
|
|
]
|
2011-05-30 11:47:30 +00:00
|
|
|
},
|
2011-06-01 10:48:11 +00:00
|
|
|
type = 'feature';
|
2011-05-30 11:47:30 +00:00
|
|
|
Ox.forEach(strings, function(values, key) {
|
|
|
|
Ox.forEach(values, function(value) {
|
|
|
|
if (find(value)) {
|
|
|
|
type = key;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2011-06-01 10:48:11 +00:00
|
|
|
return type == 'feature';
|
2011-05-30 11:47:30 +00:00
|
|
|
});
|
|
|
|
return type;
|
|
|
|
function find(type) {
|
|
|
|
var ret;
|
|
|
|
Ox.forEach(types, function(v) {
|
|
|
|
ret = Ox.startsWith(v, type);
|
|
|
|
return !ret;
|
|
|
|
});
|
|
|
|
return ret;
|
|
|
|
}
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
return place;
|
|
|
|
}
|
|
|
|
|
|
|
|
function pressEnter() {
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
if (place) {
|
|
|
|
if (place.editing) {
|
|
|
|
place.submit();
|
|
|
|
} else {
|
|
|
|
place.edit();
|
|
|
|
}
|
|
|
|
} else if (self.resultPlace) {
|
|
|
|
selectPlace(self.resultPlace.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function pressEscape() {
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
if (place) {
|
|
|
|
if (place.editing) {
|
|
|
|
place.cancel();
|
|
|
|
} else {
|
|
|
|
selectPlace(null);
|
|
|
|
}
|
|
|
|
} else if (self.resultPlace) {
|
|
|
|
self.resultPlace.remove();
|
|
|
|
self.resultPlace = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-24 08:40:17 +00:00
|
|
|
function removePlace() {
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
place.id = '_' + place.id;
|
|
|
|
self.options.selected = place.id;
|
|
|
|
//Ox.print('removePlace', Ox.getObjectById(self.places, place.id))
|
|
|
|
self.places.splice(Ox.getPositionById(self.places, place.id), 1);
|
2011-05-24 16:46:46 +00:00
|
|
|
self.resultPlace && self.resultPlace.remove();
|
2011-05-24 08:40:17 +00:00
|
|
|
self.resultPlace = place;
|
|
|
|
place.marker.update();
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function reset() {
|
|
|
|
//Ox.print(self.map.getZoom(), self.zoom);
|
|
|
|
self.map.getZoom() == self.zoom ?
|
|
|
|
self.map.panTo(self.center) :
|
|
|
|
self.map.fitBounds(self.bounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
function resizeMap() {
|
|
|
|
/*
|
|
|
|
Ox.print('resizeMap', self.options.width, self.options.height);
|
|
|
|
var center = self.map.getCenter();
|
|
|
|
self.mapHeight = getMapHeight();
|
|
|
|
self.minZoom = getMinZoom();
|
|
|
|
that.css({
|
|
|
|
height: self.options.height + 'px',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
self.$map.css({
|
|
|
|
height: self.mapHeight + 'px',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
google.maps.event.trigger(self.map, 'resize');
|
|
|
|
self.map.setCenter(center);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectPlace(id) {
|
2011-05-29 12:22:54 +00:00
|
|
|
// id can be null (deselect)
|
2011-04-22 22:03:10 +00:00
|
|
|
var place,
|
|
|
|
selected = getSelectedMarker();
|
2011-05-29 12:22:54 +00:00
|
|
|
Ox.print('Ox.Map selectPlace()', id, selected);
|
2011-04-22 22:03:10 +00:00
|
|
|
if (id != selected) {
|
|
|
|
place = getPlaceById(selected);
|
|
|
|
place && place.deselect();
|
2011-05-29 12:22:54 +00:00
|
|
|
if (id !== null) {
|
|
|
|
place = getPlaceById(id);
|
|
|
|
if (place) {
|
|
|
|
select();
|
|
|
|
} else {
|
|
|
|
// async && place doesn't exist yet
|
|
|
|
self.options.places({
|
2011-05-30 12:10:38 +00:00
|
|
|
keys: self.placeKeys,
|
2011-05-29 12:22:54 +00:00
|
|
|
query: {
|
2011-05-29 20:37:41 +00:00
|
|
|
conditions: [
|
2011-05-30 06:13:28 +00:00
|
|
|
{key: 'id', value: id, operator: '='}
|
2011-05-30 18:57:22 +00:00
|
|
|
]
|
2011-05-29 12:22:54 +00:00
|
|
|
}
|
|
|
|
}, function(results) {
|
2011-06-20 12:53:00 +00:00
|
|
|
place = new Ox.MapPlace(Ox.extend({
|
2011-05-29 12:22:54 +00:00
|
|
|
map: that
|
|
|
|
}, results.data.items[0])).add();
|
|
|
|
self.places.push(place);
|
|
|
|
select();
|
2011-06-01 08:39:33 +00:00
|
|
|
that.panToPlace();
|
2011-05-29 12:22:54 +00:00
|
|
|
});
|
|
|
|
}
|
2011-05-29 17:44:48 +00:00
|
|
|
} else {
|
|
|
|
place = null;
|
|
|
|
select();
|
2011-05-29 12:22:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function select() {
|
2011-05-29 17:44:48 +00:00
|
|
|
place && place.select();
|
2011-04-22 22:03:10 +00:00
|
|
|
self.options.selected = id;
|
|
|
|
setStatus();
|
|
|
|
that.triggerEvent('selectplace', place);
|
2011-09-30 10:34:33 +00:00
|
|
|
// FIXME: all these events should rather pass {place: place}
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function setScale() {
|
|
|
|
var metersPerPixel = getMetersPerPixel();
|
|
|
|
Ox.forEach(self.scaleMeters, function(meters) {
|
|
|
|
var scaleWidth = Math.round(meters / metersPerPixel);
|
2011-05-24 06:15:44 +00:00
|
|
|
if (scaleWidth <= self.options.width / 2 - 4) {
|
2011-04-22 22:03:10 +00:00
|
|
|
self.$scaleLabel
|
|
|
|
.options({
|
|
|
|
title: '\u2190 ' + (
|
|
|
|
meters > 1000 ? Ox.formatNumber(meters / 1000) + ' k' : meters + ' '
|
|
|
|
) + 'm \u2192'
|
|
|
|
})
|
|
|
|
.css({
|
2011-05-24 06:15:44 +00:00
|
|
|
width: (scaleWidth - 16) + 'px'
|
2011-04-22 22:03:10 +00:00
|
|
|
})
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function setStatus() {
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('setStatus()', self.options.selected)
|
2011-05-22 17:12:21 +00:00
|
|
|
var code, country, disabled, place, title;
|
2011-04-22 22:03:10 +00:00
|
|
|
if (self.options.statusbar) {
|
|
|
|
place = getSelectedPlace();
|
2011-05-22 17:12:21 +00:00
|
|
|
country = place ? Ox.getCountryByGeoname(place.geoname) : '';
|
|
|
|
code = country ? country.code : 'NTHH';
|
|
|
|
disabled = place && !place.editable;
|
2011-04-22 22:03:10 +00:00
|
|
|
if (place) {
|
|
|
|
title = place.id[0] == '_' ? 'Add Place' : 'Remove Place';
|
|
|
|
} else {
|
|
|
|
title = 'New Place';
|
|
|
|
}
|
2011-05-22 17:12:21 +00:00
|
|
|
self.$placeFlag.attr({
|
|
|
|
src: Ox.PATH + 'Ox.Geo/png/icons/16/' + code + '.png'
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
self.$placeNameInput.options({
|
|
|
|
disabled: disabled,
|
|
|
|
value: place ? place.name : ''
|
|
|
|
});
|
|
|
|
self.$placeGeonameInput.options({
|
|
|
|
disabled: disabled,
|
|
|
|
value: place ? place.geoname : ''
|
|
|
|
});
|
|
|
|
self.$placeButton.options({
|
|
|
|
disabled: disabled,
|
|
|
|
title: title
|
|
|
|
});
|
|
|
|
}
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('STATUS DONE');
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-17 17:39:38 +00:00
|
|
|
function submitFind(data) {
|
2011-04-22 22:03:10 +00:00
|
|
|
that.findPlace(data.value, function(place) {
|
|
|
|
setStatus(place);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleLabels() {
|
2011-05-22 12:39:57 +00:00
|
|
|
self.options.showLabels = !self.options.showLabels
|
2011-05-24 08:40:17 +00:00
|
|
|
//Ox.print('toggle', getMapType())
|
2011-04-22 22:03:10 +00:00
|
|
|
self.map.setMapTypeId(google.maps.MapTypeId[getMapType()]);
|
2011-05-21 07:08:52 +00:00
|
|
|
/*
|
2011-04-22 22:03:10 +00:00
|
|
|
self.$labelsButton.options({
|
|
|
|
title: self.$labelsButton.options('title') == 'Show Labels' ?
|
|
|
|
'Hide Labels' : 'Show Labels'
|
|
|
|
});
|
2011-05-21 07:08:52 +00:00
|
|
|
*/
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
2011-04-29 14:56:40 +00:00
|
|
|
function triggerGeocodeEvent(data) {
|
|
|
|
// someone may want to cache google geocode data, so we fire an event.
|
|
|
|
// google puts functions like lat or lng on the objects' prototypes,
|
|
|
|
// so we create properly named properties, for json encoding
|
|
|
|
if (data.latLng) {
|
|
|
|
data.latLng = {
|
|
|
|
lat: data.latLng.lat(),
|
|
|
|
lng: data.latLng.lng()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.results.forEach(function(result) {
|
|
|
|
['bounds', 'viewport'].forEach(function(key) {
|
|
|
|
if (result.geometry[key]) {
|
|
|
|
result.geometry[key] = {
|
|
|
|
northEast: {
|
|
|
|
lat: result.geometry[key].getNorthEast().lat(),
|
|
|
|
lng: result.geometry[key].getNorthEast().lng()
|
|
|
|
},
|
|
|
|
southWest: {
|
|
|
|
lat: result.geometry[key].getSouthWest().lat(),
|
|
|
|
lng: result.geometry[key].getSouthWest().lng()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (result.geometry.location) {
|
|
|
|
result.geometry.location = {
|
|
|
|
lat: result.geometry.location.lat(),
|
|
|
|
lng: result.geometry.location.lng()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
that.triggerEvent('geocode', data);
|
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
function undo() {
|
|
|
|
Ox.print('Map undo')
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
place.editing && place.undo();
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateFormElements() {
|
|
|
|
var width = that.width();
|
|
|
|
self.$zoomInput && constructZoomInput();
|
2011-05-22 17:12:21 +00:00
|
|
|
if (self.options.statusbar) {
|
|
|
|
self.$placeNameInput.options({
|
|
|
|
width: Math.floor((width - 132) / 2)
|
|
|
|
});
|
|
|
|
self.$placeGeonameInput.options({
|
|
|
|
width: Math.ceil((width - 132) / 2)
|
|
|
|
});
|
|
|
|
}
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function zoom(z) {
|
|
|
|
self.map.setZoom(self.map.getZoom() + z);
|
|
|
|
}
|
|
|
|
|
|
|
|
function zoomChanged() {
|
|
|
|
var zoom = self.map.getZoom();
|
|
|
|
if (zoom < self.minZoom) {
|
|
|
|
self.map.setZoom(self.minZoom);
|
|
|
|
} else if (self.maxZoom && zoom > self.maxZoom) {
|
|
|
|
self.map.setZoom(self.maxZoom);
|
|
|
|
} else {
|
|
|
|
self.zoomChanged = true;
|
|
|
|
self.$zoomInput && self.$zoomInput.options({value: zoom});
|
|
|
|
that.triggerEvent('zoom', {
|
|
|
|
value: zoom
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function zoomToPlace() {
|
|
|
|
Ox.print('zoomToPlace')
|
|
|
|
if (self.options.selected !== null) {
|
|
|
|
self.map.fitBounds(getPlaceById(self.options.selected).bounds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-29 12:40:51 +00:00
|
|
|
self.setOption = function(key, value) {
|
2011-04-22 22:03:10 +00:00
|
|
|
/*if (key == 'height' || key == 'width') {
|
|
|
|
resizeMap();
|
|
|
|
} else */if (key == 'places') {
|
2011-06-18 18:59:32 +00:00
|
|
|
//fixme: should zoom to new bounds
|
|
|
|
zoom(0);
|
2011-04-22 22:03:10 +00:00
|
|
|
} else if (key == 'selected') {
|
|
|
|
selectPlace(value);
|
|
|
|
} else if (key == 'type') {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-05-24 08:40:17 +00:00
|
|
|
that.addPlace = function(data) {
|
|
|
|
addPlaceToPlaces(data);
|
2011-05-24 06:15:44 +00:00
|
|
|
};
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
that.getKey = function() {
|
|
|
|
var key = null;
|
|
|
|
if (self.shiftKey) {
|
|
|
|
key = 'shift'
|
|
|
|
} else if (self.metaKey) {
|
|
|
|
key = 'meta'
|
|
|
|
}
|
|
|
|
return key;
|
2011-06-01 08:39:33 +00:00
|
|
|
};
|
2011-04-22 22:03:10 +00:00
|
|
|
|
2011-06-14 14:34:09 +00:00
|
|
|
that.getSelectedPlace = function() {
|
|
|
|
return getSelectedPlace();
|
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
that.editPlace = function() {
|
2011-06-14 14:34:09 +00:00
|
|
|
getSelectedPlace().edit();
|
2011-04-22 22:03:10 +00:00
|
|
|
return that;
|
2011-06-01 08:39:33 +00:00
|
|
|
};
|
|
|
|
|
2011-06-01 14:03:02 +00:00
|
|
|
/*
|
2011-06-01 08:39:33 +00:00
|
|
|
that.editPlace = function(data) {
|
|
|
|
var place = getPlaceById(self.options.selected);
|
|
|
|
place.$marker.options(data);
|
|
|
|
return that;
|
|
|
|
};
|
2011-06-01 14:03:02 +00:00
|
|
|
*/
|
2011-04-22 22:03:10 +00:00
|
|
|
|
|
|
|
that.findPlace = function(name, callback) {
|
|
|
|
getPlaceByName(name, function(place) {
|
|
|
|
if (place) {
|
|
|
|
addPlaceToMap(place);
|
|
|
|
self.map.fitBounds(place.bounds);
|
2011-04-27 07:13:12 +00:00
|
|
|
} else {
|
|
|
|
self.$findInput.addClass('OxError');
|
2011-04-22 22:03:10 +00:00
|
|
|
}
|
|
|
|
callback(place);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2011-06-14 14:34:09 +00:00
|
|
|
that.newPlace = function(place) {
|
|
|
|
addPlaceToMap(place);
|
2011-05-24 06:15:44 +00:00
|
|
|
};
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
that.panToPlace = function() {
|
|
|
|
Ox.print('panToPlace:', self.options.selected)
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
place && self.map.panTo(place.center);
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
2011-05-24 08:40:17 +00:00
|
|
|
that.removePlace = function() {
|
|
|
|
// fixme: removePlaceFromPlaces() ?
|
|
|
|
removePlace();
|
2011-04-22 22:03:10 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
that.resizeMap = function() {
|
|
|
|
|
|
|
|
/*
|
|
|
|
Ox.print('resizeMap', self.options.width, self.options.height);
|
|
|
|
var center = self.map.getCenter();
|
|
|
|
self.mapHeight = getMapHeight();
|
|
|
|
self.minZoom = getMinZoom();
|
|
|
|
that.css({
|
|
|
|
height: self.options.height + 'px',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
self.$map.css({
|
|
|
|
height: self.mapHeight + 'px',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
google.maps.event.trigger(self.map, 'resize');
|
|
|
|
self.map.setCenter(center);
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Ox.print('Ox.Map.resizeMap()');
|
|
|
|
var center = self.map.getCenter();
|
|
|
|
self.options.height = that.$element.height();
|
|
|
|
self.options.width = that.$element.width();
|
|
|
|
Ox.print(self.options.width, self.options.height)
|
|
|
|
self.$map.css({
|
|
|
|
height: self.mapHeight + 'px',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
google.maps.event.trigger(self.map, 'resize');
|
|
|
|
self.map.setCenter(center);
|
|
|
|
self.options.zoombar && self.$zoomInput.options({
|
|
|
|
size: self.options.width
|
|
|
|
});
|
|
|
|
*/
|
2011-09-30 10:34:33 +00:00
|
|
|
|
|
|
|
self.options.height = that.$element.height();
|
|
|
|
self.options.width = that.$element.width();
|
|
|
|
self.mapHeight = getMapHeight();
|
|
|
|
self.minZoom = getMinZoom();
|
|
|
|
Ox.print('map w/h', self.options.width, self.options.height)
|
|
|
|
self.$map.css({
|
|
|
|
height: self.mapHeight + 'px',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
self.options.zoombar && self.$zoomInput.options({
|
|
|
|
size: self.options.width
|
|
|
|
});
|
2011-04-22 22:03:10 +00:00
|
|
|
updateFormElements();
|
|
|
|
google.maps.event.trigger(self.map, 'resize');
|
|
|
|
return that;
|
|
|
|
}
|
|
|
|
|
2011-05-24 06:15:44 +00:00
|
|
|
that.value = function(id, key, value) {
|
|
|
|
// fixme: should be like the corresponding List/TextList/etc value function
|
|
|
|
Ox.print('Map.value', id, key, value)
|
2011-06-01 14:03:02 +00:00
|
|
|
getPlaceById(id).options(key, value);
|
2011-05-24 06:15:44 +00:00
|
|
|
}
|
|
|
|
|
2011-04-22 22:03:10 +00:00
|
|
|
that.zoomToPlace = function() {
|
|
|
|
Ox.print('zoomToPlace')
|
|
|
|
var place = getSelectedPlace();
|
|
|
|
place && self.map.fitBounds(place.bounds);
|
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
that.zoom = function(value) {
|
2011-05-24 14:32:03 +00:00
|
|
|
zoom(value);
|
2011-04-22 22:03:10 +00:00
|
|
|
return that;
|
|
|
|
};
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|