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

org.oscim.tiling.source.geojson.LngLat Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.20.0
Show newest version
package org.oscim.tiling.source.geojson;

import com.google.gwt.core.client.JavaScriptObject;

public class LngLat extends JavaScriptObject {

    protected LngLat() {

    }

    public final native double getLongitude() /*-{
        return this[0];
    }-*/;

    public final native double getLatitude() /*-{
        return this[1];
    }-*/;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy