All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.flow.component.map.configuration.source.XYZSource Maven / Gradle / Ivy

There is a newer version: 24.4.12
Show newest version
/**
 * Copyright 2000-2023 Vaadin Ltd.
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.flow.component.map.configuration.source;

import com.vaadin.flow.component.map.configuration.Constants;

/**
 * Source for loading tiled images from a map service using the
 * Slippy
 * Map tile numbering scheme, also known as XYZ format.
 * 

* This is commonly used by OpenStreetMap, as well as other services who have * adopted the OSM tile numbering scheme. */ public class XYZSource extends TileImageSource { public XYZSource() { this(new Options()); } public XYZSource(Options options) { super(options); } @Override public String getType() { return Constants.OL_SOURCE_XYZ; } /** * The URL template in XYZ format (see also * Slippy * map tilenames) used to load individual image tiles. The URL must * include the {@code x}, {@code y} or {@code -y}, and {@code z} * placeholders, where {@code x} and {@code y} identify the tile in the tile * grid for the zoom level {@code z}. *

* Example: {@code https://a.tile.openstreetmap.org/{z}/{x}/{y}.png} * * @return the URL template */ @Override public String getUrl() { return super.getUrl(); } /** * Sets the URL template in XYZ format. * * @param url * the new URL template */ @Override public void setUrl(String url) { super.setUrl(url); } public static class Options extends TileImageSource.Options { /** * @see XYZSource#getUrl() */ @Override public void setUrl(String url) { super.setUrl(url); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy