fix: 修改道路面的渲染

This commit is contained in:
2023-04-27 10:18:11 +08:00
parent 743ea163f2
commit c4ee38d703
8 changed files with 63 additions and 23 deletions

View File

@@ -41,12 +41,11 @@ open class RenderEntity(): RealmObject() {
}
@Ignore
var wkt: Geometry? = null
var properties: RealmDictionary<String?> = RealmDictionary()
var properties: RealmDictionary<String> = RealmDictionary()
var tileX: RealmSet<Int> = RealmSet() // x方向的tile编码
var tileY: RealmSet<Int> = RealmSet() // y方向的tile编码
constructor(name: String, properties: RealmDictionary<String?>): this() {
constructor(name: String): this() {
this.name = name
this.properties = properties
}
}