I've used the sample from http://gmaps-utility-gis.googlecode.com/svn/trunk/v3test/mvc/poly_bind.html but changed a little. There is something like star with the same idea from the sample. All warks fine if I try to drag any ray marker. But when I drag the center marker only the last bound ray is redrawn. Another problem - if I add any ray the binding to the "Center1" marker suddently stops working.
Is there something special in the API for multi-object binding or it's just a bug in the API ? How to solve these problems ?
function MVCArrayBinder(mvcArray) {
this.array_ = mvcArray;
}
MVCArrayBinder.prototype = new google.maps.MVCObject();
MVCArrayBinder.prototype.get = function (key) {
if (!isNaN(parseInt(key))) {
return this.array_.getAt(parseInt(key));
} else {
this.array_.get(key);
}
}
MVCArrayBinder.prototype.set = function (key, val) {
if (!isNaN(parseInt(key))) {
this.array_.setAt(parseInt(key), val);
} else {
this.array_.set(key, val);
}
}
var map;
var center;
function initialize() {
var chicago = new google.maps.LatLng(41.879535, -87.624333);
var myOptions = {
zoom: 7,
center: chicago,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
center = new google.maps.Marker({position:chicago, map:map, draggable:true});
var center1 = new google.maps.Marker({ title: "center1", map: map, draggable: true });
center1.bindTo('position', center);
google.maps.event.addListener(map, 'click', add);
}
function add(event) {
var poly = new google.maps.Polyline({map: map});
var marker = new google.maps.Marker({ position: event.latLng, map: map, draggable: true });
poly.setPath([center.getPosition(), marker.getPosition()]);
poly.binder = new MVCArrayBinder(poly.getPath());
center.bindTo('position', poly.binder, '0');
marker.bindTo('position', poly.binder, '1');
}