与可拖动的制造商...但拖曳波纹xdk模拟工作只在Android设备而不是在Lumia 920

问题描述:

我在英特尔XDK WP8& ANDROID包含一个Javascript谷歌地图...与可拖动的制造商...但拖曳涟漪xdk模拟作品只在Android设备而不是Lumia 920.WD8中的标记不移动...

I have build an App in Intel XDK WP8 & ANDROID that contains a Javascript Google Map... with draggable maker...but drag in ripple xdk emulate works Only in Android device and not in Lumia 920. The Marker in WP8 NOT Moves...

    google.maps.event.addListener(marker,'drag', function(event) {        document.getElementById('lat').innerHTML = event.latLng.lat().toString().substring(0,9);        document.getElementById('lng').innerHTML = event.latLng.lng().toString().substring(0,9);		document.getElementById('latlong').innerHTML = event.latLng.lat() + ', ' + event.latLng.lng();    });    google.maps.event.addListener(marker,'dragend', function(event) {        document.getElementById('lat').innerHTML = event.latLng.lat().toString().substring(0,9);        document.getElementById('lng').innerHTML = event.latLng.lng().toString().substring(0,9);		document.getElementById('latlong').innerHTML = event.latLng.lat() + ', ' + event.latLng.lng();					codeLatLng2(event.latLng.lat().toString().substring(0,9),event.latLng.lng().toString().substring(0,9));    });




您好lsepolis123,

Hi lsepolis123,

我知道WinJS也是基于HTML和JavaScript构建的,因此使用第三方库代码不会有任何问题。

As I know WinJS is also build based on HTML and JavaScript, there shouldn't be any problem of using third party library code.

我建议您联系Google以获取更多信息,看看他们是否有针对Andriod系统和Windows Phone系统的不同解决方案。谢谢你的理解。

I would suggest you contact Google for more information to see if they have different solution for Andriod system and Windows Phone system. Thanks for your understanding.

此外,如果您感兴趣,可以使用Bing Maps:)

Besides, you could use Bing Maps if you interested :)

- James

--James