Back to project page AndroidPlaces.
The source code is released under:
Apache License
If you think the Android project AndroidPlaces listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 Brian Lee// w w w.ja v a 2 s.c o m * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.tigerpenguin.places.model; import android.os.Parcel; import android.os.Parcelable; import com.fasterxml.jackson.annotation.JsonProperty; public class PlaceLocation extends JsonModel implements Parcelable { @JsonProperty(LATITUDE) private double latitude; @JsonProperty(LONGITUDE) private double longitude; public PlaceLocation() { // required for Jackson } public PlaceLocation(Parcel in) { latitude = in.readDouble(); longitude = in.readDouble(); } public PlaceLocation(double latitude, double longitude) { this.latitude = latitude; this.longitude = longitude; } public double getLatitude() { return latitude; } public double getLongitude() { return longitude; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeDouble(latitude); dest.writeDouble(longitude); } public static final Creator<PlaceLocation> CREATOR = new Creator<PlaceLocation>() { @Override public PlaceLocation createFromParcel(Parcel source) { return new PlaceLocation(source); } @Override public PlaceLocation[] newArray(int size) { return new PlaceLocation[size]; } }; }