私はbing maps v8を使ってアプリを書いています。残念ながら、z-indexのサポートはありません(z-index関数を持っていても...)。だから私は層を使って同様のことを達成しようとしています。問題は、レイヤー間でピンを交換して、間違ったメタデータで正しいピン位置でイベントが発生することです。ここでBing maps v8イベントが間違ったピンを渡しますか?
は私がマウスオーバーで正しい場所が、間違ったメタデータを持つたびに、ピンオブジェクトを取得しておく何らかの理由でピン
function createImagePin(location, index, objArray)
{
var obj = objArray[index];
var smallPin = getSmallPin(obj);
var pin = new Microsoft.Maps.Pushpin(location,
{
visible: true,
icon: smallPin.data,
anchor: new Microsoft.Maps.Point(smallPin.width/2, smallPin.height/2) //Align center of pushpin with location.
});
pin.metadata = {};
pin.metadata.index = index;
pin.metadata.dataTarget = obj;
pin.metadata.isSelected = false;
Microsoft.Maps.Events.addHandler(pin, 'click', function (e) {
if(e.targetType === 'pushpin')
{
SetRowSelection(e.target.metadata.index);
}
});
Microsoft.Maps.Events.addHandler(pin, 'mouseover', function (e)
{
if(e.targetType === 'pushpin')
{
SelectPin(e.target);
ShowInfobox(e.target);
console.log(e.target.getLocation());
}
});
Microsoft.Maps.Events.addHandler(pin, 'mouseout', function (e)
{
if (e.targetType === 'pushpin')
{
DeselectPin(e.target);
HideInfobox();
}
});
return pin;
}
を作成する方法です。私がコメントアウトすると、選択解除...私は正しい両方を取得します。
ここではピンの選択と選択解除について説明します。私が与えられた例に基づいてBing Maps pushpin icon issues
現時点でこれらのピンに触れている他のコードはありません...私にはかなり奇妙なようです。内部的には、オブジェクトに添付されているすべてのアイテムを移動するのではなく、レイヤー内の一部の情報をコピーするだけです。実際には、私はちょうど私が間違ったデータを渡すことを停止する追加/削除をコメント...私は私のZインデックスを失うが。
function SelectPin(pin)
{
switch (pin.metadata.dataTarget.ComparableType)
{
case "Subject":
mapLayers.subjectLayer.remove(pin);
pin.setOptions({ visible: true, icon: largeGreenHouse.data, anchor: new Microsoft.Maps.Point(largeGreenHouse.width/2, largeGreenHouse.height/2) });
break;
case "Listing Comp":
mapLayers.compLayer.remove(pin);
pin.setOptions({ visible: true, icon: largeBlueHouse.data, anchor: new Microsoft.Maps.Point(largeBlueHouse.width/2, largeBlueHouse.height/2) });
break;
case "Sales Comp":
mapLayers.compLayer.remove(pin);
pin.setOptions({ visible: true, icon: largeBlueHouse.data, anchor: new Microsoft.Maps.Point(largeBlueHouse.width/2, largeBlueHouse.height/2) });
break;
case "Hidden":
pin.setOptions({ visible: false });
return;
default:
mapLayers.observableLayer.remove(pin);
pin.setOptions({ visible: true, icon: largeGreyHouse.data, anchor: new Microsoft.Maps.Point(largeGreyHouse.width/2, largeGreyHouse.height/2) });
break;
}
mapLayers.selectionLayer.add(pin);
pin.metadata.isSelected = true;
}
function DeselectPin(pin)
{
if(!pin.metadata.isSelected)
return;
pin.metadata.isSelected = false;
mapLayers.selectionLayer.remove(pin);
switch (pin.metadata.dataTarget.ComparableType)
{
case "Subject":
pin.setOptions({ visible: true, icon: greenHouse.data, anchor: new Microsoft.Maps.Point(greenHouse.width/2, greenHouse.height/2) });
mapLayers.subjectLayer.add(pin);
break;
case "Listing Comp":
pin.setOptions({ visible: true, icon: blueHouse.data, anchor: new Microsoft.Maps.Point(blueHouse.width/2, blueHouse.height/2) });
mapLayers.compLayer.add(pin);
break;
case "Sales Comp":
pin.setOptions({ visible: true, icon: blueHouse.data, anchor: new Microsoft.Maps.Point(blueHouse.width/2, blueHouse.height/2) });
mapLayers.compLayer.add(pin);
break;
case "Hidden":
pin.setOptions({ visible: false });
return;
default:
pin.setOptions({ visible: true, icon: greyHouse.data, anchor: new Microsoft.Maps.Point(greyHouse.width/2, greyHouse.height/2) });
mapLayers.observableLayer.add(pin);
break;
}