Back to project page elf.map.android.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project elf.map.android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * License: Public Domain/* w ww. ja v a 2 s .c o m*/ * Author: elf * EMail: elf198012@gmail.com */ package elf.map; import java.util.ArrayList; import java.util.List; public class Way{ public Way(){} public Way(String strName){ this.strName = strName; } public void Add(long nLongitude, long nLatitude){ _points.add(new Point(nLongitude, nLatitude)); } public String strName; public List<Point> _points = new ArrayList<Point>(); }