Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

GeoJsonOptions javadoc minZoom level and default values #12709

Merged
merged 1 commit into from
Aug 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
public class GeoJsonOptions extends HashMap<String, Object> {

/**
* Maximum zoom level at which to create vector tiles (higher means greater detail at high zoom levels).
* Minimum zoom level at which to create vector tiles (lower means more field of view detail at low zoom levels).
*
* @param minZoom the maximum zoom - Defaults to 18.
* @param minZoom the minimum zoom - Defaults to 0.
* @return the current instance for chaining
*/
public GeoJsonOptions withMinZoom(int minZoom) {
Expand All @@ -24,7 +24,7 @@ public GeoJsonOptions withMinZoom(int minZoom) {
/**
* Maximum zoom level at which to create vector tiles (higher means greater detail at high zoom levels).
*
* @param maxZoom the maximum zoom - Defaults to 18.
* @param maxZoom the maximum zoom - Defaults to 25.5
* @return the current instance for chaining
*/
public GeoJsonOptions withMaxZoom(int maxZoom) {
Expand Down