oxjs/source/Ox.UI/js/Map/Ox.MapPlace.js

211 lines
4.9 KiB
JavaScript
Raw Normal View History

2011-04-23 16:45:50 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=js
2011-04-27 07:13:12 +00:00
2011-05-16 10:49:48 +00:00
/*@
Ox.MapPlace <f> MapPlace Object
(options) -> <f> MapPlace Object
options <o> Options object
east <n|0>
editing <b|false>
geoname <s|''>
map <o|null>
markerColor <a|[255> 0> 0]>
markerSize <n|16>
name <s|''>
north <n|0>
selected <b|false>
south <n|0>
type <a|[]>
visible <b|false>
west <n|0>
@*/
2011-04-22 22:03:10 +00:00
Ox.MapPlace = function(options) {
options = Ox.extend({
east: 0,
editing: false,
geoname: '',
map: null,
markerColor: [255, 0, 0],
markerSize: 16,
2011-04-22 22:03:10 +00:00
name: '',
north: 0,
selected: false,
south: 0,
type: [],
visible: false,
west: 0
}, options);
var that = this;
Ox.forEach(options, function(val, key) {
that[key] = val;
});
update();
function update() {
that.points = {
ne: new google.maps.LatLng(that.north, that.east),
sw: new google.maps.LatLng(that.south, that.west)
};
that.bounds = new google.maps.LatLngBounds(that.points.sw, that.points.ne);
that.center = that.bounds.getCenter();
that.lat = that.center.lat();
that.lng = that.center.lng();
Ox.extend(that.points, {
e: new google.maps.LatLng(that.lat, that.east),
s: new google.maps.LatLng(that.south, that.lng),
se: new google.maps.LatLng(that.south, that.east),
n: new google.maps.LatLng(that.north, that.lng),
nw: new google.maps.LatLng(that.north, that.west),
w: new google.maps.LatLng(that.lat, that.west),
});
// fixme: use bounds.toSpan()
that.sizeNorthSouth = (that.north - that.south) *
Ox.EARTH_CIRCUMFERENCE / 360;
that.sizeEastWest = (that.east + (that.west > that.east ? 360 : 0) - that.west) *
Ox.getMetersPerDegree(that.lat);
2011-05-24 11:43:27 +00:00
that.area = Ox.getArea(
2011-04-22 22:03:10 +00:00
{lat: that.south, lng: that.west},
{lat: that.north, lng: that.east}
);
if (!that.marker) {
that.marker = new Ox.MapMarker({
color: that.markerColor,
2011-04-22 22:03:10 +00:00
map: that.map,
place: that,
size: that.markerSize
2011-04-22 22:03:10 +00:00
});
that.rectangle = new Ox.MapRectangle({
map: that.map,
place: that
});
}
}
function editable() {
return that.map.options('editable') && that.editable;
}
2011-05-16 10:49:48 +00:00
/*@
add <f> add
@*/
2011-04-22 22:03:10 +00:00
that.add = function() {
that.visible = true;
that.marker.add();
return that;
};
2011-05-16 10:49:48 +00:00
/*@
cancel <f> cancel
@*/
2011-04-22 22:03:10 +00:00
that.cancel = function() {
if (editable()) {
that.undo();
that.editing = false;
that.marker.update();
that.rectangle.deselect();
}
return that;
};
2011-05-16 10:49:48 +00:00
/*@
crossesDateline <f> crossesDateline
@*/
2011-04-22 22:03:10 +00:00
that.crossesDateline = function() {
return that.west > that.east;
}
2011-05-16 10:49:48 +00:00
/*@
deselect <f> dselect
@*/
2011-04-22 22:03:10 +00:00
that.deselect = function() {
that.editing && that.submit();
that.selected = false;
that.marker.update();
that.rectangle.remove();
return that;
};
2011-05-16 10:49:48 +00:00
/*@
edit <f> edit
@*/
2011-04-22 22:03:10 +00:00
that.edit = function() {
if (editable()) {
that.editing = true;
that.original = {
south: that.south,
west: that.west,
north: that.north,
east: that.east
};
that.marker.edit();
that.rectangle.select();
}
return that;
}
2011-05-16 10:49:48 +00:00
/*@
remove <f> remove
@*/
2011-04-22 22:03:10 +00:00
that.remove = function() {
that.editing && that.submit();
that.selected && that.deselect();
that.visible = false;
that.marker.remove();
return that;
};
2011-05-16 10:49:48 +00:00
/*@
select <f> select
@*/
2011-04-22 22:03:10 +00:00
that.select = function() {
that.selected = true;
!that.visible && that.add();
that.marker.update();
that.rectangle.add();
return that;
};
2011-05-16 10:49:48 +00:00
/*@
submit <f> submit
@*/
2011-04-22 22:03:10 +00:00
that.submit = function() {
if (editable()) {
that.editing = false;
that.marker.update();
that.rectangle.deselect();
}
return that;
};
2011-05-16 10:49:48 +00:00
/*@
update <f> update
@*/
2011-04-22 22:03:10 +00:00
that.update = function() {
update();
2011-05-22 12:39:57 +00:00
that.map.triggerEvent('changeplace', that);
2011-04-22 22:03:10 +00:00
return that;
};
2011-05-16 10:49:48 +00:00
/*@
undo <f> undo
@*/
2011-04-22 22:03:10 +00:00
that.undo = function() {
if (editable()) {
Ox.forEach(that.original, function(v, k) {
that[k] = v;
});
that.update();
that.marker.update();
that.rectangle.update();
}
return that;
};
return that;
2011-05-16 10:49:48 +00:00
};