- Aug 03 Wed 2016 03:32
【Android】Tab應用
- Aug 03 Wed 2016 01:50
【Android】取消TitleBar
- Jul 28 Thu 2016 02:04
【Android】GoogleMap繪圖
- Jul 28 Thu 2016 01:09
【Android】GoogleMapAPI如何取得範圍餐廳、醫院、各種資料顯示(或mark)在地圖上
關鍵在送出此API
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=座標&radius=搜尋範圍&types=種類&sensor=true&key=server api key
- Jul 28 Thu 2016 01:01
【Android】Marker地點
方法1: MarkerOptions markerOpt = new MarkerOptions(); markerOpt.position(new LatLng(25.033611, 121.565000)); markerOpt.title("台北101"); markerOpt.snippet("於1999年動工,2004年12月31日完工啟用,樓高509.2公尺。"); markerOpt.draggable(false); markerOpt.visible(true); markerOpt.anchor(0.5f, 0.5f);//設為圖片中心 markerOpt.icon(BitmapDescriptorFactory.fromResource(android.R.drawable.ic_menu_mylocation)); map.addMarker(markerOpt);
方法2:
- Jul 28 Thu 2016 00:05
【Android】Google Map當前位置
方法1(參考資料1):
double lat, lng; LocationManager lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE); Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); // 設定定位資訊由 GPS提供 lat = location.getLatitude(); // 取得經度 lng = location.getLongitude(); // 取得緯度 LatLng HOME = new LatLng(lat, lng); map.moveCamera(CameraUpdateFactory.newLatLngZoom(HOME, 15.0f));//數字越大放越大
- Jul 27 Wed 2016 02:22
【JavaScript】PQGrid頁數
- Jul 26 Tue 2016 00:02
【ASP.NET MVC】Serialization不見
- Jul 24 Sun 2016 19:00
【JQuery】PQGrid欄位顯示與否
- Jul 22 Fri 2016 16:23
【Window Form C#】listbox與listview DragDrop 拖曳事件

