Commit a79b1fbc authored by 7c00's avatar 7c00

Fix #329

parent 3a4f1e42
...@@ -213,12 +213,12 @@ class AMapView(context: Context) : TextureMapView(context) { ...@@ -213,12 +213,12 @@ class AMapView(context: Context) : TextureMapView(context) {
locationStyle.radiusFillColor(style.getInt("fillColor")) locationStyle.radiusFillColor(style.getInt("fillColor"))
} }
if (style.hasKey("strockeColor")) { if (style.hasKey("strokeColor")) {
locationStyle.strokeColor(style.getInt("strockeColor")) locationStyle.strokeColor(style.getInt("strokeColor"))
} }
if (style.hasKey("strockeWidth")) { if (style.hasKey("strokeWidth")) {
locationStyle.strokeWidth(style.getDouble("strockeWidth").toFloat()) locationStyle.strokeWidth(style.getDouble("strokeWidth").toFloat())
} }
if (style.hasKey("image")) { if (style.hasKey("image")) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment