maps-kt/maps-kt-features/src/commonMain/kotlin/center/sciprog/maps/features/ViewPoint.kt

9 lines
191 B
Kotlin
Raw Normal View History

2022-12-23 11:47:34 +03:00
package center.sciprog.maps.features
/**
* @param T type of coordinates used for the view point
*/
public interface ViewPoint<T: Any> {
public val focus: T
public val zoom: Float
2022-12-23 11:47:34 +03:00
}