BingMapsで問題が発生していEntityClickedListener
ます。私は与えられた例に従ってそれをコーディングしました:
map.setEntityClickedListener(new EntityClickedListener()
{
@Override
public void onAvailableChecked(String layerName, int entityId)
{
HashMap<String, Object> metadata = map.getLayerManager.GetMetadataByID(layerName, entityId);
Toast.makeText(Activity.this, metadata.toString(), Toast.LENGTH_LONG)
.show();
}
});
ただし、をクリックしてPushpin
も何も起こりません。メタデータの内容を正確に確認するためにトーストメッセージを作成しましたが、何も起こりません。アプリケーションのパスを見ると、Bingがデータサービスを使用して情報を取得していることがわかります。
bsds.FindByAreaCompleted = new Handler(){
public void handleMessage(Message msg) {
if(msg.obj != null){
Record[] records = (Record[])msg.obj;
EntityLayer el = (EntityLayer)bingMapsView.getLayerManager().getLayerByName(Constants.DataLayers.Search);
double maxLat = -90, minLat = 90, maxLon = -180, minLon = 180;
for(Record r : records){
Pushpin p = new Pushpin(r.Location);
p.Title = r.DisplayName;
HashMap<String, Object> metadata = new HashMap<String, Object>();
metadata.put("record", r);
el.add(p, metadata);
}
bingMapsView.setMapView(new LocationRect(maxLat, maxLon, minLat, minLon));
el.updateLayer();
}
};
また、JavaScriptファイルを編集してListener
、動作を妨げている可能性のあるチェックをいくつか削除しました。
this.ShowInfobox = function(entity){
window.BingMapsInterlop.entityClicked(entity.layerName, entityId);
};
var Layer = function(name, map, dataLayer)
{
this.Name = name;
var entities = new MM.EntityCollection(),
_map = map;
this.AddEntities = function(data)
{
if(data != null)
{
var i = data.length - 1;
if (i >= 0)
{
do
{
data[i].Entity.entityId = data[i].EntityId;
data[i].Entity.layerName = name;
// Commented out
// if(data[i].title != null && data[i].title != undefined && data[i].title != '')
// {
data[i].Entity.title = data[i].title;
MM.Events.addHandler(data[i].Entity, 'click', function(e)
{
BingMapsAndroid.ShowInfobox(e.target);
});
// }
entities.push(data[i].Entity);
}
while (i--)
}
}
};
// fluff
};
JavaScriptファイルを正しく編集しましたか?私自身はJavaScriptを知らないので、このガイドに従っています。Pushpin
が追加されて表示されていますBingMapsView
が、OnClick
メソッドが実行されません。足りないものはありますか?
Bingがクリックイベントのリスナーとイベントを作成するためにたどるパスPushpin
は、私の意見ではほとんど迷路です。私が欠けているこれを行うためのより簡単な方法がなければなりません。誰かアドバイスはありますか?