Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
p x
MapMultiEngine
Commits
c6545628
Commit
c6545628
authored
Dec 30, 2025
by
p x
Browse files
修改底图命名
parent
e2946046
Changes
70
Show whitespace changes
Inline
Side-by-side
app/src/main/java/com/sd/demo/ui/TPolygonActivity.kt
View file @
c6545628
...
...
@@ -2,14 +2,14 @@ package com.sd.demo.ui
import
android.os.Bundle
import
androidx.appcompat.app.AppCompatActivity
import
com.
sd.
ap
i
.maps.cdata.MSLatLng
import
com.
sd.
ap
i
.ui.MapReadyView
import
com.
sd.
ap
i
.maps.DelDrawInMap
import
com.
sd.
ap
i
.maps.cdata.MSOverlay
import
com.
sd.
ap
i
.maps.DrawInMap
import
com.
sd.
ap
i
.maps.MethodAdv
import
com.
sd.
ap
i
.maps.MsPolygonOptions
import
com.
sd.
ap
i
.ui.Map
Multi
View.OnMapReadyLis
import
com.
cusc.m
ap.maps.cdata.MSLatLng
import
com.
cusc.m
ap.ui.MapReadyView
import
com.
cusc.m
ap.maps.DelDrawInMap
import
com.
cusc.m
ap.maps.cdata.MSOverlay
import
com.
cusc.m
ap.maps.DrawInMap
import
com.
cusc.m
ap.maps.MethodAdv
import
com.
cusc.m
ap.maps.MsPolygonOptions
import
com.
cusc.m
ap.ui.MapView.OnMapReadyLis
import
com.sd.demo.databinding.ActivityTpolygonBinding
/**绘制一个面***/
...
...
@@ -29,7 +29,7 @@ class TPolygonActivity : AppCompatActivity() {
binding
=
ActivityTpolygonBinding
.
inflate
(
layoutInflater
)
setContentView
(
binding
.
root
)
binding
.
m
ap
Multi
View
.
addMapRenderCallback
(
object
:
OnMapReadyLis
{
binding
.
M
apView
.
addMapRenderCallback
(
object
:
OnMapReadyLis
{
override
fun
onMapReady
(
mapReadyView
:
MapReadyView
)
{
this
@TPolygonActivity
.
mapReadView
=
mapReadyView
// MSMethodAdv.setMapZoom(mapReadView, 9f)
...
...
app/src/main/java/com/sd/demo/ui/TReGeocodeActivity.kt
View file @
c6545628
...
...
@@ -2,8 +2,8 @@ package com.sd.demo.ui
import
android.os.Bundle
import
androidx.appcompat.app.AppCompatActivity
import
com.
sd.
ap
i
.maps.cdata.RegeocodeRes
import
com.
sd.
ap
i
.maps.MSRegeoCode
import
com.
cusc.m
ap.maps.cdata.RegeocodeRes
import
com.
cusc.m
ap.maps.MSRegeoCode
import
com.sd.demo.databinding.ActivityTreGeocodeBinding
...
...
@@ -19,7 +19,7 @@ class TReGeocodeActivity : AppCompatActivity() {
super
.
onCreate
(
savedInstanceState
)
binding
=
ActivityTreGeocodeBinding
.
inflate
(
layoutInflater
)
setContentView
(
binding
.
root
)
// binding.
m
ap
Multi
View.addMapRenderCallback(object : OnMapReadyLis {
// binding.
M
apView.addMapRenderCallback(object : OnMapReadyLis {
// override fun onMapReady(mapReadyView: MapReadyView) {
// this@TReGeocodeActivity.mapReadView = mapReadyView
// }
...
...
app/src/main/java/com/sd/demo/ui/WmsActivity.kt
View file @
c6545628
...
...
@@ -5,10 +5,10 @@ import androidx.appcompat.app.AppCompatActivity
import
com.minedata.minenavi.SDKInitializer
import
com.minedata.minenavi.SDKInitializer.InitListener
import
com.minedata.minenavi.map.MineMap
import
com.
sd.
ap
i
.maps.MethodAdv
import
com.
sd.
ap
i
.maps.WmsLayer
import
com.
sd.
ap
i
.ui.Map
Multi
View.OnMapReadyLis
import
com.
sd.
ap
i
.ui.MapReadyView
import
com.
cusc.m
ap.maps.MethodAdv
import
com.
cusc.m
ap.maps.WmsLayer
import
com.
cusc.m
ap.ui.MapView.OnMapReadyLis
import
com.
cusc.m
ap.ui.MapReadyView
import
com.sd.demo.databinding.ActivityWmtsBinding
/****
...
...
@@ -44,7 +44,7 @@ class WmsActivity : AppCompatActivity() {
binding
=
ActivityWmtsBinding
.
inflate
(
layoutInflater
)
setContentView
(
binding
.
root
)
binding
.
m
ap
Multi
View
.
addMapRenderCallback
(
object
:
OnMapReadyLis
{
binding
.
M
apView
.
addMapRenderCallback
(
object
:
OnMapReadyLis
{
override
fun
onMapReady
(
mapReadyView
:
MapReadyView
)
{
this
@WmsActivity
.
mapReadView
=
mapReadyView
// SDKInitializer.setStyleUrl(MineMap.UrlType.satellite, url)
...
...
app/src/main/res/layout/activity_calculate_distance.xml
View file @
c6545628
...
...
@@ -67,8 +67,8 @@
android:text=
"计算"
/>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_change_map_center.xml
View file @
c6545628
...
...
@@ -57,8 +57,8 @@
<!-- android:text="设置地图边界范围" />-->
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_control.xml
View file @
c6545628
...
...
@@ -29,8 +29,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_display_map.xml
View file @
c6545628
...
...
@@ -4,8 +4,8 @@
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
@@ -13,12 +13,12 @@
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="10dp"-->
<!-- android:src="#784125"/>-->
<!-- <com.
sd.
ap
i
.ui.Map
Multi
View-->
<!-- android:id="@+id/
m
ap
Multi
View2"-->
<!-- <com.
cusc.m
ap.ui.MapView-->
<!-- android:id="@+id/
M
apView2"-->
<!-- android:layout_width="200dp"-->
<!-- android:layout_height="300dp" />-->
<!-- <com.
sd.
ap
i
.ui.Map
Multi
View-->
<!-- android:id="@+id/
m
ap
Multi
View3"-->
<!-- <com.
cusc.m
ap.ui.MapView-->
<!-- android:id="@+id/
M
apView3"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="300dp" />-->
</LinearLayout>
\ No newline at end of file
app/src/main/res/layout/activity_gesture_demo.xml
View file @
c6545628
...
...
@@ -24,8 +24,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_high_map.xml
View file @
c6545628
...
...
@@ -5,8 +5,8 @@
android:layout_height=
"match_parent"
>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
app:map_child_type=
"high"
/>
...
...
app/src/main/res/layout/activity_on_line_map.xml
View file @
c6545628
...
...
@@ -33,8 +33,8 @@
android:text=
"恢复移动"
/>
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_part_road.xml
View file @
c6545628
...
...
@@ -90,8 +90,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
app:map_child_type=
"road"
/>
...
...
app/src/main/res/layout/activity_show_car_online.xml
View file @
c6545628
...
...
@@ -19,8 +19,8 @@
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_show_my_loc_landian.xml
View file @
c6545628
...
...
@@ -8,8 +8,8 @@
tools:context=
".ui.ShowMyLocLandian"
>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_tcircel.xml
View file @
c6545628
...
...
@@ -18,8 +18,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_tdrive_route.xml
View file @
c6545628
...
...
@@ -42,8 +42,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_text_main.xml
View file @
c6545628
...
...
@@ -25,8 +25,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_tgps.xml
View file @
c6545628
...
...
@@ -23,8 +23,8 @@
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
/>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_tlayers.xml
View file @
c6545628
...
...
@@ -31,8 +31,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_tline.xml
View file @
c6545628
...
...
@@ -30,8 +30,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
app/src/main/res/layout/activity_tmarker.xml
View file @
c6545628
...
...
@@ -19,8 +19,8 @@
</LinearLayout>
<com.
sd.
ap
i
.ui.Map
Multi
View
android:id=
"@+id/
m
ap
Multi
View"
<com.
cusc.m
ap.ui.MapView
android:id=
"@+id/
M
apView"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment