Best way to overlay an ESRI shapefile on google maps?

I like using (open source and gui friendly) Quantum GIS to convert the shapefile to kml. Google Maps API supports only a subset of the KML standard. One limitation is file size. To reduce your file size, you can Quantum GIS’s “simplify geometries” function. This “smooths” polygons. Then you can select your layer and do … Read more

Android – How to download a file from a webserver

Using Async task call when you want to download file : new DownloadFileFromURL().execute(file_url); public class MainActivity extends Activity { // Progress Dialog private ProgressDialog pDialog; public static final int progress_bar_type = 0; // File url to download private static String file_url = “http://www.qwikisoft.com/demo/ashade/20001.kml”; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); new DownloadFileFromURL().execute(file_url); } /** … Read more