我在我的安卓应用程序中使用Yandex的MapKit
。这些文档非常缺乏,根本没有帮助。我做了基本的设计。地图很好用。但我有以下问题:
val mapObjects = mapView.map.mapObjects.addCollection()
val mark: PlacemarkMapObject = mapObjects.addPlacemark(Point(X, Y))
mark.opacity = 0.5f
mark.setIcon(ImageProvider.fromResource(requireContext(), R.drawable.ic_heart))
mark.isDraggable = true
它没有工作,标记也没有显示在地图上。
如何将这些控件添加到我的mapView
上?如有任何建议,将不胜感激。
发布于 2021-08-08 22:33:46
您需要将它们以编程方式添加,或者使用接口生成器(在android中不知道正确的名称)作为自定义视图,然后实现所需的任何逻辑。Yandex不提供任何默认的实现。
发布于 2022-03-31 02:24:29
如果在Yandex地图中添加标记svg图标,您可以这样做:
class AddMarkerActivity : AppCompatActivity() {
// change this locations
private val endRoute = Point(41.275548, 69.204386) // 69.197425, 41.256773
private val endRoute2 = Point(41.273366, 69.210980) // 69.197425, 41.256773
private val endRoute3 = Point(41.282035, 69.213861) // 69.197425, 41.256773
private val endRoute4 = Point(41.277995, 69.229924) // 69.197425, 41.256773
private lateinit var mapView: MapView
override fun onCreate(savedInstanceState: Bundle?) {
MapKitFactory.setApiKey("Your_Yandex_API_Key")
MapKitFactory.initialize(this)
DirectionsFactory.initialize(this)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_draw_route)
mapView = findViewById(R.id.yandex_map)
mapView.setOnClickListener {
toast("${(it as MapView).focusPoint.x} , : , ${it.focusPoint.y}")
}
userLocation.setTapListener {
Log.d("TTT", "location: ${it.latitude} ${it.longitude}")
}
drawLocationMark(endRoute, mapView)
drawLocationMark(endRoute2, mapView)
drawLocationMark(endRoute3, mapView)
drawLocationMark(endRoute4, mapView)
}
private fun drawMyLocationMark(point: Point, mapview: MapView) {
val view = View(this).apply {
background = getDrawable(R.drawable.ic_baseline_location_on_24)
}
mapview.map.mapObjects.addPlacemark(point, ViewProvider(view))
}
}
发布于 2022-03-31 21:56:17
活动布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.yandex.mapkit.mapview.MapView
android:id="@+id/yandex_map"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
https://stackoverflow.com/questions/59877367
复制