-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLuggMarkerView.kt
More file actions
306 lines (248 loc) · 7.33 KB
/
LuggMarkerView.kt
File metadata and controls
306 lines (248 loc) · 7.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package com.luggmaps
import android.content.Context
import android.graphics.Canvas
import android.view.View
import androidx.core.graphics.createBitmap
import androidx.core.view.isNotEmpty
import com.facebook.react.views.view.ReactViewGroup
import com.google.android.gms.maps.model.AdvancedMarker
import com.google.android.gms.maps.model.BitmapDescriptor
import com.google.android.gms.maps.model.BitmapDescriptorFactory
import com.luggmaps.events.MarkerDragEvent
import com.luggmaps.events.MarkerPressEvent
import com.luggmaps.extensions.dispatchEvent
interface LuggMarkerViewDelegate {
fun markerViewDidUpdate(markerView: LuggMarkerView)
fun markerViewDidLayout(markerView: LuggMarkerView)
}
class LuggMarkerView(context: Context) : ReactViewGroup(context) {
private var scaleUpdateRunnable: Runnable? = null
var name: String? = null
private set
var latitude: Double = 0.0
private set
var longitude: Double = 0.0
private set
var title: String? = null
private set
var description: String? = null
private set
var delegate: LuggMarkerViewDelegate? = null
var marker: AdvancedMarker? = null
var anchorX: Float = 0.5f
private set
var anchorY: Float = 1.0f
private set
var zIndex: Float = 0f
private set
var rotate: Float = 0f
private set
var scale: Float = 1f
private set
var scaleChanged: Boolean = false
private set
var rasterize: Boolean = true
private set
var draggable: Boolean = false
private set
var isDragging: Boolean = false
var didLayout: Boolean = false
private set
val hasCustomView: Boolean
get() = contentView.isNotEmpty()
val contentView: ReactViewGroup = ReactViewGroup(context)
var onUpdate: (() -> Unit)? = null
var calloutView: LuggCalloutView? = null
private set
private fun measureContentBounds(): Pair<Int, Int> {
var maxWidth = 0
var maxHeight = 0
for (i in 0 until contentView.childCount) {
val child = contentView.getChildAt(i)
val childRight = child.left + child.width
val childBottom = child.top + child.height
if (childRight > maxWidth) maxWidth = childRight
if (childBottom > maxHeight) maxHeight = childBottom
}
return Pair(maxWidth, maxHeight)
}
private fun createContentBitmap(): BitmapDescriptor? {
val (width, height) = measureContentBounds()
if (width <= 0 || height <= 0) return null
val scaledWidth = (width * scale).toInt()
val scaledHeight = (height * scale).toInt()
val bitmap = createBitmap(scaledWidth, scaledHeight)
val canvas = Canvas(bitmap)
canvas.scale(scale, scale)
contentView.draw(canvas)
return BitmapDescriptorFactory.fromBitmap(bitmap)
}
fun layoutContentView() {
val (width, height) = measureContentBounds()
val scaledWidth = (width * scale).toInt()
val scaledHeight = (height * scale).toInt()
contentView.scaleX = scale
contentView.scaleY = scale
contentView.pivotX = 0f
contentView.pivotY = 0f
contentView.measure(
View.MeasureSpec.makeMeasureSpec(scaledWidth, View.MeasureSpec.EXACTLY),
View.MeasureSpec.makeMeasureSpec(scaledHeight, View.MeasureSpec.EXACTLY)
)
contentView.layout(0, 0, scaledWidth, scaledHeight)
}
fun applyIconToMarker() {
val m = marker ?: return
if (!hasCustomView) return
createContentBitmap()?.let { m.setIcon(it) }
}
fun applyScaleToMarker() {
val m = marker ?: return
if (!hasCustomView) return
scaleUpdateRunnable?.let { removeCallbacks(it) }
scaleUpdateRunnable = Runnable {
if (rasterize) {
createContentBitmap()?.let { m.setIcon(it) }
} else {
layoutContentView()
onUpdate?.invoke()
}
}
post(scaleUpdateRunnable)
}
fun updateIcon(onAddMarker: () -> Unit) {
if (!hasCustomView) return
post {
if (marker == null) {
onAddMarker()
} else if (rasterize) {
applyIconToMarker()
} else {
layoutContentView()
onUpdate?.invoke()
}
}
}
init {
visibility = GONE
}
override fun addView(child: View, index: Int) {
if (child is LuggCalloutView) {
calloutView = child
} else {
contentView.addView(child, index)
}
didLayout = false
}
override fun removeView(child: View) {
if (child is LuggCalloutView) {
calloutView = null
} else {
contentView.removeView(child)
}
didLayout = false
}
override fun removeViewAt(index: Int) {
val child = getChildAt(index)
if (child is LuggCalloutView) {
calloutView = null
} else {
contentView.removeViewAt(index)
}
didLayout = false
}
override fun removeViews(start: Int, count: Int) {
for (i in (start until start + count).reversed()) {
val child = getChildAt(i)
if (child is LuggCalloutView) {
calloutView = null
} else if (i < contentView.childCount) {
contentView.removeViewAt(i)
}
}
didLayout = false
}
override fun getChildCount(): Int = contentView.childCount + if (calloutView != null) 1 else 0
override fun getChildAt(index: Int): View? {
if (index < contentView.childCount) return contentView.getChildAt(index)
if (index == contentView.childCount && calloutView != null) return calloutView
return null
}
override fun onSizeChanged(w: Int, h: Int, oldw: Int, oldh: Int) {
super.onSizeChanged(w, h, oldw, oldh)
didLayout = false
}
override fun onLayout(
changed: Boolean,
left: Int,
top: Int,
right: Int,
bottom: Int
) {
super.onLayout(changed, left, top, right, bottom)
if (changed && !didLayout) {
didLayout = true
delegate?.markerViewDidLayout(this)
}
}
fun setCoordinate(latitude: Double, longitude: Double) {
this.latitude = latitude
this.longitude = longitude
}
fun setTitle(title: String?) {
this.title = title
}
fun setDescription(description: String?) {
this.description = description
}
fun setAnchor(x: Double, y: Double) {
anchorX = x.toFloat()
anchorY = y.toFloat()
}
fun setZIndex(zIndex: Float) {
this.zIndex = zIndex
}
fun setRotate(rotate: Float) {
this.rotate = rotate
}
fun setScale(scale: Float) {
scaleChanged = this.scale != scale
this.scale = scale
}
fun clearScaleChanged() {
scaleChanged = false
}
fun setRasterize(rasterize: Boolean) {
this.rasterize = rasterize
}
fun setDraggable(draggable: Boolean) {
this.draggable = draggable
}
fun emitPressEvent(x: Float, y: Float) {
dispatchEvent(MarkerPressEvent(this, latitude, longitude, x, y))
}
fun emitDragStartEvent(x: Float, y: Float) {
dispatchEvent(MarkerDragEvent(this, MarkerDragEvent.DRAG_START, latitude, longitude, x, y))
}
fun emitDragChangeEvent(x: Float, y: Float) {
dispatchEvent(MarkerDragEvent(this, MarkerDragEvent.DRAG_CHANGE, latitude, longitude, x, y))
}
fun emitDragEndEvent(x: Float, y: Float) {
dispatchEvent(MarkerDragEvent(this, MarkerDragEvent.DRAG_END, latitude, longitude, x, y))
}
fun setName(name: String?) {
this.name = name
}
fun onAfterUpdateTransaction() {
delegate?.markerViewDidUpdate(this)
}
fun onDropViewInstance() {
scaleUpdateRunnable?.let { removeCallbacks(it) }
scaleUpdateRunnable = null
onUpdate = null
didLayout = false
calloutView = null
delegate = null
contentView.removeAllViews()
}
}