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

9 lines
191 B
Kotlin

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
}