我目前正在使用Google地圖並希望在我的應用中使用動畫GIF作爲疊加層。 這真的很令人沮喪,因爲它在iOS版本的應用程序上似乎非常容易,所以我真的想要實現一些很酷的東西。在G地圖中使用動畫GIF作爲地面疊加層地圖v2
我想看到的結果是對這部影片的23S:https://www.youtube.com/watch?v=JI323jA67x0#t=23s
的地面覆蓋,似乎韌皮做法,但不接受gif動畫:
LatLng NEWARK = new LatLng(40.714086, -74.228697);
GroundOverlayOptions newarkMap = new GroundOverlayOptions()
.image(BitmapDescriptorFactory.fromResource(R.drawable.newark_nj_1922))
.position(NEWARK, 8600f, 6500f);
// Add an overlay to the map, retaining a handle to the GroundOverlay object.
GroundOverlay imageOverlay = map.addGroundOverlay(newarkMap);
https://developers.google.com/maps/documentation/android-api/groundoverlay#add_an_overlay
感謝您的反對,有人可以解釋一下嗎?即使我的英語不完美,我認爲這個問題很好解釋了,結果的視頻,我試圖實現的代碼。 –
你檢索什麼錯誤?你使用的是什麼Android版本? –