├── .gitignore ├── LICENSE ├── MoveLocation.gif ├── MoveLocation ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── MoveLocation.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── libs │ │ ├── BaiduLBS_Android.jar │ │ ├── arm64-v8a │ │ │ ├── libBaiduMapSDK_v3_5_0_1.so │ │ │ ├── libBaiduMapSDK_v3_5_0_11.so │ │ │ ├── libBaiduMapSDK_v3_5_0_3.so │ │ │ └── liblocSDK6a.so │ │ ├── armeabi-v7a │ │ │ ├── libBaiduMapSDK_v3_5_0_1.so │ │ │ ├── libBaiduMapSDK_v3_5_0_11.so │ │ │ ├── libBaiduMapSDK_v3_5_0_3.so │ │ │ └── liblocSDK6a.so │ │ ├── armeabi │ │ │ ├── libBaiduMapSDK_v3_5_0_1.so │ │ │ ├── libBaiduMapSDK_v3_5_0_11.so │ │ │ ├── libBaiduMapSDK_v3_5_0_3.so │ │ │ └── liblocSDK6a.so │ │ ├── x86 │ │ │ ├── libBaiduMapSDK_v3_5_0_1.so │ │ │ ├── libBaiduMapSDK_v3_5_0_11.so │ │ │ ├── libBaiduMapSDK_v3_5_0_3.so │ │ │ └── liblocSDK6a.so │ │ └── x86_64 │ │ │ ├── libBaiduMapSDK_v3_5_0_1.so │ │ │ ├── libBaiduMapSDK_v3_5_0_11.so │ │ │ ├── libBaiduMapSDK_v3_5_0_3.so │ │ │ └── liblocSDK6a.so │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── scp │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── scp │ │ │ ├── MainActivity.java │ │ │ ├── PoiAdapter.java │ │ │ └── PoiSearchAdapter.java │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── locationpois_item.xml │ │ └── poisearch_item.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── baidumap_ico_poi_on.png │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md └── 说明.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | /*/build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /MoveLocation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation.gif -------------------------------------------------------------------------------- /MoveLocation/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /MoveLocation/.idea/.name: -------------------------------------------------------------------------------- 1 | MoveLocation -------------------------------------------------------------------------------- /MoveLocation/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /MoveLocation/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MoveLocation/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MoveLocation/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /MoveLocation/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 46 | 47 | C:\Users\imahe001\AppData\Roaming\Subversion 48 | 49 | 50 | 51 | 52 | 53 | 1.8 54 | 55 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /MoveLocation/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MoveLocation/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /MoveLocation/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MoveLocation/MoveLocation.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /MoveLocation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MoveLocation/app/app.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /MoveLocation/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.0" 6 | 7 | defaultConfig { 8 | applicationId "com.scp" 9 | minSdkVersion 14 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | 15 | buildTypes { 16 | release { 17 | //代码混淆 18 | minifyEnabled false 19 | //zip优化 20 | zipAlignEnabled true 21 | //移除无用的resource文件 22 | shrinkResources true 23 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 24 | } 25 | } 26 | 27 | sourceSets { 28 | main { 29 | jniLibs.srcDirs = ['libs'] 30 | } 31 | } 32 | } 33 | 34 | dependencies { 35 | compile fileTree(include: ['*.jar'], dir: 'libs') 36 | compile 'com.android.support:appcompat-v7:23.0.0' 37 | compile files('libs/BaiduLBS_Android.jar') 38 | } 39 | -------------------------------------------------------------------------------- /MoveLocation/app/libs/BaiduLBS_Android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/BaiduLBS_Android.jar -------------------------------------------------------------------------------- /MoveLocation/app/libs/arm64-v8a/libBaiduMapSDK_v3_5_0_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/arm64-v8a/libBaiduMapSDK_v3_5_0_1.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/arm64-v8a/libBaiduMapSDK_v3_5_0_11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/arm64-v8a/libBaiduMapSDK_v3_5_0_11.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/arm64-v8a/libBaiduMapSDK_v3_5_0_3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/arm64-v8a/libBaiduMapSDK_v3_5_0_3.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/arm64-v8a/liblocSDK6a.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/arm64-v8a/liblocSDK6a.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi-v7a/libBaiduMapSDK_v3_5_0_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi-v7a/libBaiduMapSDK_v3_5_0_1.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi-v7a/libBaiduMapSDK_v3_5_0_11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi-v7a/libBaiduMapSDK_v3_5_0_11.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi-v7a/libBaiduMapSDK_v3_5_0_3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi-v7a/libBaiduMapSDK_v3_5_0_3.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi-v7a/liblocSDK6a.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi-v7a/liblocSDK6a.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi/libBaiduMapSDK_v3_5_0_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi/libBaiduMapSDK_v3_5_0_1.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi/libBaiduMapSDK_v3_5_0_11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi/libBaiduMapSDK_v3_5_0_11.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi/libBaiduMapSDK_v3_5_0_3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi/libBaiduMapSDK_v3_5_0_3.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/armeabi/liblocSDK6a.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/armeabi/liblocSDK6a.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86/libBaiduMapSDK_v3_5_0_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86/libBaiduMapSDK_v3_5_0_1.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86/libBaiduMapSDK_v3_5_0_11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86/libBaiduMapSDK_v3_5_0_11.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86/libBaiduMapSDK_v3_5_0_3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86/libBaiduMapSDK_v3_5_0_3.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86/liblocSDK6a.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86/liblocSDK6a.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86_64/libBaiduMapSDK_v3_5_0_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86_64/libBaiduMapSDK_v3_5_0_1.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86_64/libBaiduMapSDK_v3_5_0_11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86_64/libBaiduMapSDK_v3_5_0_11.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86_64/libBaiduMapSDK_v3_5_0_3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86_64/libBaiduMapSDK_v3_5_0_3.so -------------------------------------------------------------------------------- /MoveLocation/app/libs/x86_64/liblocSDK6a.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/libs/x86_64/liblocSDK6a.so -------------------------------------------------------------------------------- /MoveLocation/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\Soft\android-sdk-windows/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /MoveLocation/app/src/androidTest/java/com/scp/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.scp; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /MoveLocation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 43 | 44 | 49 | 52 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/java/com/scp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.scp; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.AppCompatActivity; 5 | import android.text.Editable; 6 | import android.text.TextWatcher; 7 | import android.view.View; 8 | import android.widget.EditText; 9 | import android.widget.ListView; 10 | import android.widget.RelativeLayout; 11 | 12 | import com.baidu.location.BDLocation; 13 | import com.baidu.location.BDLocationListener; 14 | import com.baidu.location.LocationClient; 15 | import com.baidu.location.LocationClientOption; 16 | import com.baidu.mapapi.SDKInitializer; 17 | import com.baidu.mapapi.map.BaiduMap; 18 | import com.baidu.mapapi.map.MapStatus; 19 | import com.baidu.mapapi.map.MapStatusUpdate; 20 | import com.baidu.mapapi.map.MapStatusUpdateFactory; 21 | import com.baidu.mapapi.map.MapView; 22 | import com.baidu.mapapi.map.MyLocationConfiguration; 23 | import com.baidu.mapapi.map.MyLocationData; 24 | import com.baidu.mapapi.model.LatLng; 25 | import com.baidu.mapapi.search.core.PoiInfo; 26 | import com.baidu.mapapi.search.geocode.GeoCodeResult; 27 | import com.baidu.mapapi.search.geocode.GeoCoder; 28 | import com.baidu.mapapi.search.geocode.OnGetGeoCoderResultListener; 29 | import com.baidu.mapapi.search.geocode.ReverseGeoCodeOption; 30 | import com.baidu.mapapi.search.geocode.ReverseGeoCodeResult; 31 | import com.baidu.mapapi.search.poi.OnGetPoiSearchResultListener; 32 | import com.baidu.mapapi.search.poi.PoiCitySearchOption; 33 | import com.baidu.mapapi.search.poi.PoiDetailResult; 34 | import com.baidu.mapapi.search.poi.PoiResult; 35 | import com.baidu.mapapi.search.poi.PoiSearch; 36 | 37 | import java.util.List; 38 | 39 | public class MainActivity extends AppCompatActivity implements BDLocationListener, OnGetGeoCoderResultListener, BaiduMap.OnMapStatusChangeListener, TextWatcher { 40 | 41 | private MapView mMapView; 42 | private BaiduMap mBaiduMap; 43 | private ListView poisLL; 44 | /** 45 | * 定位模式 46 | */ 47 | private MyLocationConfiguration.LocationMode mCurrentMode; 48 | /** 49 | * 定位端 50 | */ 51 | private LocationClient mLocClient; 52 | /** 53 | * 是否是第一次定位 54 | */ 55 | private boolean isFirstLoc = true; 56 | /** 57 | * 定位坐标 58 | */ 59 | private LatLng locationLatLng; 60 | /** 61 | * 定位城市 62 | */ 63 | private String city; 64 | /** 65 | * 反地理编码 66 | */ 67 | private GeoCoder geoCoder; 68 | /** 69 | * 界面上方布局 70 | */ 71 | private RelativeLayout topRL; 72 | /** 73 | * 搜索地址输入框 74 | */ 75 | private EditText searchAddress; 76 | /** 77 | * 搜索输入框对应的ListView 78 | */ 79 | private ListView searchPois; 80 | 81 | @Override 82 | protected void onCreate(Bundle savedInstanceState) { 83 | super.onCreate(savedInstanceState); 84 | //在使用SDK各组件之前初始化context信息,传入ApplicationContext 85 | //注意该方法要再setContentView方法之前实现 86 | SDKInitializer.initialize(getApplicationContext()); 87 | //requestWindowFeature(Window.FEATURE_NO_TITLE); 88 | setContentView(R.layout.activity_main); 89 | initView(); 90 | } 91 | 92 | private void initView() { 93 | mMapView = (MapView) findViewById(R.id.main_bdmap); 94 | mBaiduMap = mMapView.getMap(); 95 | 96 | poisLL = (ListView) findViewById(R.id.main_pois); 97 | 98 | topRL = (RelativeLayout) findViewById(R.id.main_top_RL); 99 | 100 | searchAddress = (EditText) findViewById(R.id.main_search_address); 101 | 102 | searchPois = (ListView) findViewById(R.id.main_search_pois); 103 | 104 | //定义地图状态 105 | MapStatus mMapStatus = new MapStatus.Builder().zoom(18).build(); 106 | MapStatusUpdate mMapStatusUpdate = MapStatusUpdateFactory.newMapStatus(mMapStatus); 107 | //改变地图状态 108 | mBaiduMap.setMapStatus(mMapStatusUpdate); 109 | 110 | //地图状态改变相关监听 111 | mBaiduMap.setOnMapStatusChangeListener(this); 112 | 113 | //开启定位图层 114 | mBaiduMap.setMyLocationEnabled(true); 115 | 116 | //定位图层显示方式 117 | mCurrentMode = MyLocationConfiguration.LocationMode.NORMAL; 118 | 119 | /** 120 | * 设置定位图层配置信息,只有先允许定位图层后设置定位图层配置信息才会生效 121 | * customMarker用户自定义定位图标 122 | * enableDirection是否允许显示方向信息 123 | * locationMode定位图层显示方式 124 | */ 125 | mBaiduMap.setMyLocationConfigeration(new MyLocationConfiguration(mCurrentMode, true, null)); 126 | 127 | //初始化定位 128 | mLocClient = new LocationClient(this); 129 | //注册定位监听 130 | mLocClient.registerLocationListener(this); 131 | 132 | //定位选项 133 | LocationClientOption option = new LocationClientOption(); 134 | /** 135 | * coorType - 取值有3个: 136 | * 返回国测局经纬度坐标系:gcj02 137 | * 返回百度墨卡托坐标系 :bd09 138 | * 返回百度经纬度坐标系 :bd09ll 139 | */ 140 | option.setCoorType("bd09ll"); 141 | //设置是否需要地址信息,默认为无地址 142 | option.setIsNeedAddress(true); 143 | //设置是否需要返回位置语义化信息,可以在BDLocation.getLocationDescribe()中得到数据,ex:"在天安门附近", 可以用作地址信息的补充 144 | option.setIsNeedLocationDescribe(true); 145 | //设置是否需要返回位置POI信息,可以在BDLocation.getPoiList()中得到数据 146 | option.setIsNeedLocationPoiList(true); 147 | /** 148 | * 设置定位模式 149 | * Battery_Saving 150 | * 低功耗模式 151 | * Device_Sensors 152 | * 仅设备(Gps)模式 153 | * Hight_Accuracy 154 | * 高精度模式 155 | */ 156 | option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy); 157 | //设置是否打开gps进行定位 158 | option.setOpenGps(true); 159 | //设置扫描间隔,单位是毫秒 当<1000(1s)时,定时定位无效 160 | option.setScanSpan(1000); 161 | 162 | //设置 LocationClientOption 163 | mLocClient.setLocOption(option); 164 | 165 | //开始定位 166 | mLocClient.start(); 167 | 168 | } 169 | 170 | /** 171 | * 定位监听 172 | * 173 | * @param bdLocation 174 | */ 175 | @Override 176 | public void onReceiveLocation(BDLocation bdLocation) { 177 | 178 | //如果bdLocation为空或mapView销毁后不再处理新数据接收的位置 179 | if (bdLocation == null || mBaiduMap == null) { 180 | return; 181 | } 182 | 183 | //定位数据 184 | MyLocationData data = new MyLocationData.Builder() 185 | //定位精度bdLocation.getRadius() 186 | .accuracy(bdLocation.getRadius()) 187 | //此处设置开发者获取到的方向信息,顺时针0-360 188 | .direction(bdLocation.getDirection()) 189 | //经度 190 | .latitude(bdLocation.getLatitude()) 191 | //纬度 192 | .longitude(bdLocation.getLongitude()) 193 | //构建 194 | .build(); 195 | 196 | //设置定位数据 197 | mBaiduMap.setMyLocationData(data); 198 | 199 | //是否是第一次定位 200 | if (isFirstLoc) { 201 | isFirstLoc = false; 202 | LatLng ll = new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude()); 203 | MapStatusUpdate msu = MapStatusUpdateFactory.newLatLngZoom(ll, 18); 204 | mBaiduMap.animateMapStatus(msu); 205 | } 206 | 207 | //获取坐标,待会用于POI信息点与定位的距离 208 | locationLatLng = new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude()); 209 | //获取城市,待会用于POISearch 210 | city = bdLocation.getCity(); 211 | 212 | //文本输入框改变监听,必须在定位完成之后 213 | searchAddress.addTextChangedListener(this); 214 | 215 | //创建GeoCoder实例对象 216 | geoCoder = GeoCoder.newInstance(); 217 | //发起反地理编码请求(经纬度->地址信息) 218 | ReverseGeoCodeOption reverseGeoCodeOption = new ReverseGeoCodeOption(); 219 | //设置反地理编码位置坐标 220 | reverseGeoCodeOption.location(new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude())); 221 | geoCoder.reverseGeoCode(reverseGeoCodeOption); 222 | 223 | //设置查询结果监听者 224 | geoCoder.setOnGetGeoCodeResultListener(this); 225 | } 226 | 227 | //地理编码查询结果回调函数 228 | @Override 229 | public void onGetGeoCodeResult(GeoCodeResult geoCodeResult) { 230 | } 231 | 232 | //反地理编码查询结果回调函数 233 | @Override 234 | public void onGetReverseGeoCodeResult(ReverseGeoCodeResult reverseGeoCodeResult) { 235 | List poiInfos = reverseGeoCodeResult.getPoiList(); 236 | PoiAdapter poiAdapter = new PoiAdapter(MainActivity.this, poiInfos); 237 | poisLL.setAdapter(poiAdapter); 238 | } 239 | 240 | 241 | /** 242 | * 手势操作地图,设置地图状态等操作导致地图状态开始改变 243 | * 244 | * @param mapStatus 地图状态改变开始时的地图状态 245 | */ 246 | @Override 247 | public void onMapStatusChangeStart(MapStatus mapStatus) { 248 | } 249 | 250 | /** 251 | * 地图状态变化中 252 | * 253 | * @param mapStatus 当前地图状态 254 | */ 255 | @Override 256 | public void onMapStatusChange(MapStatus mapStatus) { 257 | } 258 | 259 | /** 260 | * 地图状态改变结束 261 | * 262 | * @param mapStatus 地图状态改变结束后的地图状态 263 | */ 264 | @Override 265 | public void onMapStatusChangeFinish(MapStatus mapStatus) { 266 | //地图操作的中心点 267 | LatLng cenpt = mapStatus.target; 268 | geoCoder.reverseGeoCode(new ReverseGeoCodeOption().location(cenpt)); 269 | } 270 | 271 | /** 272 | * 输入框监听---输入之前 273 | * 274 | * @param s 字符序列 275 | * @param start 开始 276 | * @param count 总计 277 | * @param after 之后 278 | */ 279 | @Override 280 | public void beforeTextChanged(CharSequence s, int start, int count, int after) { 281 | } 282 | 283 | /** 284 | * 输入框监听---正在输入 285 | * 286 | * @param s 字符序列 287 | * @param start 开始 288 | * @param before 之前 289 | * @param count 总计 290 | */ 291 | @Override 292 | public void onTextChanged(CharSequence s, int start, int before, int count) { 293 | } 294 | 295 | /** 296 | * 输入框监听---输入完毕 297 | * 298 | * @param s 299 | */ 300 | @Override 301 | public void afterTextChanged(Editable s) { 302 | if (s.length() == 0 || "".equals(s.toString())) { 303 | searchPois.setVisibility(View.GONE); 304 | } else { 305 | //创建PoiSearch实例 306 | PoiSearch poiSearch = PoiSearch.newInstance(); 307 | //城市内检索 308 | PoiCitySearchOption poiCitySearchOption = new PoiCitySearchOption(); 309 | //关键字 310 | poiCitySearchOption.keyword(s.toString()); 311 | //城市 312 | poiCitySearchOption.city(city); 313 | //设置每页容量,默认为每页10条 314 | poiCitySearchOption.pageCapacity(10); 315 | //分页编号 316 | poiCitySearchOption.pageNum(1); 317 | poiSearch.searchInCity(poiCitySearchOption); 318 | //设置poi检索监听者 319 | poiSearch.setOnGetPoiSearchResultListener(new OnGetPoiSearchResultListener() { 320 | //poi 查询结果回调 321 | @Override 322 | public void onGetPoiResult(PoiResult poiResult) { 323 | List poiInfos = poiResult.getAllPoi(); 324 | PoiSearchAdapter poiSearchAdapter = new PoiSearchAdapter(MainActivity.this, poiInfos, locationLatLng); 325 | searchPois.setVisibility(View.VISIBLE); 326 | searchPois.setAdapter(poiSearchAdapter); 327 | } 328 | 329 | //poi 详情查询结果回调 330 | @Override 331 | public void onGetPoiDetailResult(PoiDetailResult poiDetailResult) { 332 | } 333 | }); 334 | } 335 | } 336 | 337 | 338 | //回退键 339 | @Override 340 | public void onBackPressed() { 341 | finish(); 342 | } 343 | 344 | @Override 345 | protected void onResume() { 346 | super.onResume(); 347 | // activity 恢复时同时恢复地图控件 348 | mMapView.onResume(); 349 | } 350 | 351 | @Override 352 | protected void onPause() { 353 | super.onPause(); 354 | // activity 暂停时同时暂停地图控件 355 | mMapView.onPause(); 356 | } 357 | 358 | @Override 359 | protected void onDestroy() { 360 | super.onDestroy(); 361 | 362 | //退出时停止定位 363 | mLocClient.stop(); 364 | //退出时关闭定位图层 365 | mBaiduMap.setMyLocationEnabled(false); 366 | 367 | // activity 销毁时同时销毁地图控件 368 | mMapView.onDestroy(); 369 | 370 | //释放资源 371 | if (geoCoder != null) { 372 | geoCoder.destroy(); 373 | } 374 | 375 | mMapView = null; 376 | } 377 | 378 | } 379 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/java/com/scp/PoiAdapter.java: -------------------------------------------------------------------------------- 1 | package com.scp; 2 | 3 | import android.content.Context; 4 | import android.graphics.Color; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | import android.widget.BaseAdapter; 9 | import android.widget.ImageView; 10 | import android.widget.LinearLayout; 11 | import android.widget.TextView; 12 | 13 | import com.baidu.mapapi.search.core.PoiInfo; 14 | 15 | import java.util.List; 16 | 17 | /** 18 | * poi适配器 19 | */ 20 | public class PoiAdapter extends BaseAdapter { 21 | private Context context; 22 | private List pois; 23 | private LinearLayout linearLayout; 24 | 25 | 26 | PoiAdapter(Context context, List pois) { 27 | this.context = context; 28 | this.pois = pois; 29 | } 30 | 31 | @Override 32 | public int getCount() { 33 | return pois.size(); 34 | } 35 | 36 | @Override 37 | public Object getItem(int position) { 38 | return pois.get(position); 39 | } 40 | 41 | @Override 42 | public long getItemId(int position) { 43 | return position; 44 | } 45 | 46 | @Override 47 | public View getView(int position, View convertView, ViewGroup parent) { 48 | ViewHolder holder = null; 49 | if (convertView == null) { 50 | convertView = LayoutInflater.from(context).inflate(R.layout.locationpois_item, null); 51 | linearLayout = (LinearLayout) convertView.findViewById(R.id.locationpois_linearlayout); 52 | holder = new ViewHolder(convertView); 53 | convertView.setTag(holder); 54 | } else { 55 | holder = (ViewHolder) convertView.getTag(); 56 | } 57 | if (position == 0 && linearLayout.getChildCount() < 2) { 58 | ImageView imageView = new ImageView(context); 59 | ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(32, 32); 60 | imageView.setLayoutParams(params); 61 | imageView.setBackgroundColor(Color.TRANSPARENT); 62 | imageView.setImageResource(R.mipmap.baidumap_ico_poi_on); 63 | imageView.setScaleType(ImageView.ScaleType.FIT_XY); 64 | linearLayout.addView(imageView, 0, params); 65 | holder.locationpoi_name.setTextColor(Color.parseColor("#FF5722")); 66 | } 67 | PoiInfo poiInfo = pois.get(position); 68 | holder.locationpoi_name.setText(poiInfo.name); 69 | holder.locationpoi_address.setText(poiInfo.address); 70 | return convertView; 71 | } 72 | 73 | class ViewHolder { 74 | TextView locationpoi_name; 75 | TextView locationpoi_address; 76 | 77 | ViewHolder(View view) { 78 | locationpoi_name = (TextView) view.findViewById(R.id.locationpois_name); 79 | locationpoi_address = (TextView) view.findViewById(R.id.locationpois_address); 80 | } 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/java/com/scp/PoiSearchAdapter.java: -------------------------------------------------------------------------------- 1 | package com.scp; 2 | 3 | import android.content.Context; 4 | import android.view.LayoutInflater; 5 | import android.view.View; 6 | import android.view.ViewGroup; 7 | import android.widget.BaseAdapter; 8 | import android.widget.TextView; 9 | 10 | import com.baidu.mapapi.model.LatLng; 11 | import com.baidu.mapapi.search.core.PoiInfo; 12 | import com.baidu.mapapi.utils.DistanceUtil; 13 | 14 | import java.util.List; 15 | 16 | /** 17 | * Created by imahe001 on 2015/9/29. 18 | */ 19 | public class PoiSearchAdapter extends BaseAdapter { 20 | 21 | private Context context; 22 | private List poiInfos; 23 | private final LatLng locationLatLng; 24 | 25 | public PoiSearchAdapter(Context context, List poiInfos, LatLng locationLatLng) { 26 | this.context = context; 27 | this.poiInfos = poiInfos; 28 | this.locationLatLng = locationLatLng; 29 | } 30 | 31 | @Override 32 | public int getCount() { 33 | return poiInfos.size(); 34 | } 35 | 36 | @Override 37 | public Object getItem(int position) { 38 | return poiInfos.get(position); 39 | } 40 | 41 | @Override 42 | public long getItemId(int position) { 43 | return position; 44 | } 45 | 46 | @Override 47 | public View getView(int position, View convertView, ViewGroup parent) { 48 | ViewHolder holder = null; 49 | if (convertView == null) { 50 | convertView = LayoutInflater.from(context).inflate(R.layout.poisearch_item, null); 51 | holder = new ViewHolder(convertView); 52 | convertView.setTag(holder); 53 | } else { 54 | holder = (ViewHolder) convertView.getTag(); 55 | } 56 | PoiInfo poiInfo = poiInfos.get(position); 57 | holder.poisearch_name.setText(poiInfo.name); 58 | holder.poisearch_address.setText(poiInfo.address); 59 | holder.poisearch_distance.setText((int)DistanceUtil.getDistance(locationLatLng, poiInfo.location)+"米"); 60 | return convertView; 61 | } 62 | 63 | class ViewHolder { 64 | TextView poisearch_name; 65 | TextView poisearch_address; 66 | TextView poisearch_distance; 67 | 68 | public ViewHolder(View view) { 69 | poisearch_name = (TextView) view.findViewById(R.id.poisearch_name); 70 | poisearch_address = (TextView) view.findViewById(R.id.poisearch_address); 71 | poisearch_distance = (TextView) view.findViewById(R.id.poisearch_distance); 72 | } 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 15 | 16 | 21 | 22 | 28 | 29 | 30 | 35 | 36 | 37 | 41 | 42 | 48 | 49 | 55 | 56 | 57 | 58 | 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/layout/locationpois_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 19 | 20 | 21 | 25 | 26 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/layout/poisearch_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 16 | 17 | 22 | 23 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/mipmap-xxhdpi/baidumap_ico_poi_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/src/main/res/mipmap-xxhdpi/baidumap_ico_poi_on.png -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MoveLocation 3 | 4 | Hello world! 5 | Settings 6 | 7 | -------------------------------------------------------------------------------- /MoveLocation/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MoveLocation/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /MoveLocation/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true -------------------------------------------------------------------------------- /MoveLocation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scp504677840/MoveMapLocation/972532f27daf375b2cc3902a95c2344f8fb696d0/MoveLocation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MoveLocation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Sep 28 15:04:34 CST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /MoveLocation/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /MoveLocation/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /MoveLocation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #定位+移动选址 2 | 3 | ##博客地址:http://blog.csdn.net/y1scp/article/details/49095729 4 | 5 | - ####百学须先立志---学前须知: 6 | 7 | 我们经常在各大主流APP上要求被写上地址,如百度外卖、爱鲜蜂收货地址等等;其中他们大多数是可以让我们在地图上移动选址。就如下面这段GIF演示的一样: 8 | 9 | ![最终演示](http://img.blog.csdn.net/20151012131942637) 10 | 11 | - ####尽信书,不如无书---能学到什么? 12 | 13 | 1、地图状态MapStatus类及监听setOnMapStatusChangeListener 14 | 2、定位LocationClient类 15 | 3、反地理编码GeoCoder类 16 | 17 | - ####工欲善其事必先利其器---申请Key 18 | 19 | 百度地图访问应用(AK)申请地址:http://lbsyun.baidu.com/apiconsole/key 20 | 21 | 如果你是第一次申请的话可以参看我的另一篇教程:[Android中级篇之百度地图SDK v3.5.0-申请密钥详解[AndroidStudio下获取SHA1] ](http://blog.csdn.net/y1scp/article/details/48000761) 22 | 23 | - ####兵马未动,粮草先行---导入百度地图jar包 24 | 25 | 1、 进入[百度地图API-首页](http://developer.baidu.com/map/index.php?title=%E9%A6%96%E9%A1%B5) 26 | 27 | ![百度地图API-首页](http://img.blog.csdn.net/20150928161244468) 28 | 29 | 2、鼠标移动到 **开发** 标签页上,选择 **Android地图SDK** 30 | 31 | ![Android地图SDK](http://img.blog.csdn.net/20150928161540537) 32 | 33 | 3、选择 **相关下载** 34 | 35 | ![相关下载](http://img.blog.csdn.net/20150928162954149) 36 | 37 | 4、选择 **全部下载** (此时这里会跳转到新的下载页面) 38 | 39 | ![全部下载](http://img.blog.csdn.net/20150928163204429) 40 | 41 | 5、选择 **相对应的开发包(本教程大家选择和下图标注的一样即可)** 42 | 43 | ![开发包](http://img.blog.csdn.net/20150928163415187) 44 | 45 | 6、导入jar包到工程 46 | 47 | 如果你是第一次导入的话可以参看我另一篇教程:[Android中级篇之百度地图SDK v3.5.0-配置环境及发布[图解AndroidStudio下配置.so文件]](http://blog.csdn.net/y1scp/article/details/48023947) 这里呢就不再赘述了。 48 | 49 | ![导入jar包到工程](http://img.blog.csdn.net/20150928163752359) 50 | 51 | - ####权限及服务---AndroidManifest 52 | 53 | ``` 54 | 55 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 96 | 97 | 102 | 105 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | ``` 128 | 129 | ![AndroidManifest](http://img.blog.csdn.net/20150928165951364) 130 | 131 | - ####配置.so文件及其他---build.gradle 132 | 133 | ``` 134 | apply plugin: 'com.android.application' 135 | 136 | android { 137 | compileSdkVersion 23 138 | buildToolsVersion "23.0.0" 139 | 140 | defaultConfig { 141 | applicationId "com.scp" 142 | minSdkVersion 14 143 | targetSdkVersion 23 144 | versionCode 1 145 | versionName "1.0" 146 | } 147 | buildTypes { 148 | release { 149 | //代码混淆 150 | minifyEnabled false 151 | //zip优化 152 | zipAlignEnabled true 153 | //移除无用的resource文件 154 | shrinkResources true 155 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 156 | } 157 | } 158 | sourceSets { 159 | main { 160 | jniLibs.srcDirs = ['libs'] 161 | } 162 | } 163 | } 164 | 165 | dependencies { 166 | compile fileTree(include: ['*.jar'], dir: 'libs') 167 | compile 'com.android.support:appcompat-v7:23.0.0' 168 | compile files('libs/BaiduLBS_Android.jar') 169 | } 170 | 171 | ``` 172 | 173 | ![build.gradle](http://img.blog.csdn.net/20150928170552125) 174 | 175 | - ####主布局---activity_main.xml 176 | 177 | 首先我们先分析一下,整个布局结构上面是百度的 **MapView** (地图区域)下面是一个 **ListView**(选址列表区域) ,乍一看好像是如下图描述一样: 178 | 179 | ![布局](http://img.blog.csdn.net/20151012132925522) 180 | 181 | ``` 182 | 183 | 187 | 188 | 193 | 194 | 199 | 200 | 201 | ``` 202 | 203 | 从布局中我们可以看到 **MapView** 占了250dp(大家自己可以随意给个值,不要太小即可)。下面的 **ListView** 则是填充了剩余的空间。 204 | 205 | - ####第一步:基础地图 206 | 207 | ``` 208 | public class MainActivity extends AppCompatActivity { 209 | 210 | private MapView mMapView; 211 | private BaiduMap mBaiduMap; 212 | 213 | @Override 214 | protected void onCreate(Bundle savedInstanceState) { 215 | super.onCreate(savedInstanceState); 216 | //在使用SDK各组件之前初始化context信息,传入ApplicationContext 217 | //注意该方法要再setContentView方法之前实现 218 | SDKInitializer.initialize(getApplicationContext()); 219 | //requestWindowFeature(Window.FEATURE_NO_TITLE); 220 | setContentView(R.layout.activity_main); 221 | initView(); 222 | } 223 | 224 | private void initView() { 225 | mMapView = (MapView) findViewById(R.id.main_bdmap); 226 | mBaiduMap = mMapView.getMap(); 227 | } 228 | 229 | @Override 230 | protected void onResume() { 231 | super.onResume(); 232 | // activity 恢复时同时恢复地图控件 233 | mMapView.onResume(); 234 | } 235 | 236 | @Override 237 | protected void onPause() { 238 | super.onPause(); 239 | // activity 暂停时同时暂停地图控件 240 | mMapView.onPause(); 241 | } 242 | 243 | @Override 244 | protected void onDestroy() { 245 | super.onDestroy(); 246 | 247 | // activity 销毁时同时销毁地图控件 248 | mMapView.onDestroy(); 249 | mMapView = null; 250 | } 251 | 252 | } 253 | ``` 254 | 255 | 这里我们的 **MainActivity** 继承的是 **AppCompatActivity**,继承 **Activity** 也行。 256 | ``` 257 | //在使用SDK各组件之前初始化context信息,传入ApplicationContext 258 | //注意该方法要再setContentView方法之前实现 259 | SDKInitializer.initialize(getApplicationContext()); 260 | ``` 261 | 这段代码一段要放在 **setContentView(R.layout.activity_main);** 之前。继续往下看,其中有一句代码`requestWindowFeature(Window.FEATURE_NO_TITLE);`被注释掉了,需要去掉标题栏的朋友可以加上这句代码。下面呢还有另外一种方法去掉标题栏,打开我们的 **style.xml** 。 262 | 263 | ![没改之前](http://img.blog.csdn.net/20150928180045316) 264 | 265 | 改成 **Theme.AppCompat.Light.NoActionBar** 266 | 267 | ![改完之后](http://img.blog.csdn.net/20150928174607806) 268 | 269 | 运行效果图: 270 | 271 | ![基础地图](http://img.blog.csdn.net/20150928180533707) 272 | 273 | - ####第二步:定位 274 | 275 | 继续书写我们的MainActivity里面的代码: 276 | 277 | ``` 278 | public class MainActivity extends AppCompatActivity implements BDLocationListener, OnGetGeoCoderResultListener, BaiduMap.OnMapStatusChangeListener { 279 | 280 | private MapView mMapView; 281 | private BaiduMap mBaiduMap; 282 | private ListView poisLL; 283 | /** 284 | * 定位模式 285 | */ 286 | private MyLocationConfiguration.LocationMode mCurrentMode; 287 | /** 288 | * 定位端 289 | */ 290 | private LocationClient mLocClient; 291 | /** 292 | * 是否是第一次定位 293 | */ 294 | private boolean isFirstLoc = true; 295 | /** 296 | * 定位坐标 297 | */ 298 | private LatLng locationLatLng; 299 | /** 300 | * 定位城市 301 | */ 302 | private String city; 303 | /** 304 | * 反地理编码 305 | */ 306 | private GeoCoder geoCoder; 307 | 308 | @Override 309 | protected void onCreate(Bundle savedInstanceState) { 310 | super.onCreate(savedInstanceState); 311 | //在使用SDK各组件之前初始化context信息,传入ApplicationContext 312 | //注意该方法要再setContentView方法之前实现 313 | SDKInitializer.initialize(getApplicationContext()); 314 | //requestWindowFeature(Window.FEATURE_NO_TITLE); 315 | setContentView(R.layout.activity_main); 316 | initView(); 317 | } 318 | 319 | private void initView() { 320 | mMapView = (MapView) findViewById(R.id.main_bdmap); 321 | mBaiduMap = mMapView.getMap(); 322 | 323 | poisLL = (ListView) findViewById(R.id.main_pois); 324 | 325 | //定义地图状态 326 | MapStatus mMapStatus = new MapStatus.Builder().zoom(18).build(); 327 | MapStatusUpdate mMapStatusUpdate = MapStatusUpdateFactory.newMapStatus(mMapStatus); 328 | //改变地图状态 329 | mBaiduMap.setMapStatus(mMapStatusUpdate); 330 | 331 | //地图状态改变相关监听 332 | mBaiduMap.setOnMapStatusChangeListener(this); 333 | 334 | //开启定位图层 335 | mBaiduMap.setMyLocationEnabled(true); 336 | 337 | //定位图层显示方式 338 | mCurrentMode = MyLocationConfiguration.LocationMode.NORMAL; 339 | 340 | /** 341 | * 设置定位图层配置信息,只有先允许定位图层后设置定位图层配置信息才会生效 342 | * customMarker用户自定义定位图标 343 | * enableDirection是否允许显示方向信息 344 | * locationMode定位图层显示方式 345 | */ 346 | mBaiduMap.setMyLocationConfigeration(new MyLocationConfiguration(mCurrentMode, true, null)); 347 | 348 | //初始化定位 349 | mLocClient = new LocationClient(this); 350 | //注册定位监听 351 | mLocClient.registerLocationListener(this); 352 | 353 | //定位选项 354 | LocationClientOption option = new LocationClientOption(); 355 | /** 356 | * coorType - 取值有3个: 357 | * 返回国测局经纬度坐标系:gcj02 358 | * 返回百度墨卡托坐标系 :bd09 359 | * 返回百度经纬度坐标系 :bd09ll 360 | */ 361 | option.setCoorType("bd09ll"); 362 | //设置是否需要地址信息,默认为无地址 363 | option.setIsNeedAddress(true); 364 | //设置是否需要返回位置语义化信息,可以在BDLocation.getLocationDescribe()中得到数据,ex:"在天安门附近", 可以用作地址信息的补充 365 | option.setIsNeedLocationDescribe(true); 366 | //设置是否需要返回位置POI信息,可以在BDLocation.getPoiList()中得到数据 367 | option.setIsNeedLocationPoiList(true); 368 | /** 369 | * 设置定位模式 370 | * Battery_Saving 371 | * 低功耗模式 372 | * Device_Sensors 373 | * 仅设备(Gps)模式 374 | * Hight_Accuracy 375 | * 高精度模式 376 | */ 377 | option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy); 378 | //设置是否打开gps进行定位 379 | option.setOpenGps(true); 380 | //设置扫描间隔,单位是毫秒 当<1000(1s)时,定时定位无效 381 | option.setScanSpan(1000); 382 | 383 | //设置 LocationClientOption 384 | mLocClient.setLocOption(option); 385 | 386 | //开始定位 387 | mLocClient.start(); 388 | 389 | 390 | } 391 | 392 | /** 393 | * 定位监听 394 | * 395 | * @param bdLocation 396 | */ 397 | @Override 398 | public void onReceiveLocation(BDLocation bdLocation) { 399 | 400 | //如果bdLocation为空或mapView销毁后不再处理新数据接收的位置 401 | if (bdLocation == null || mBaiduMap == null) { 402 | return; 403 | } 404 | 405 | //定位数据 406 | MyLocationData data = new MyLocationData.Builder() 407 | //定位精度bdLocation.getRadius() 408 | .accuracy(bdLocation.getRadius()) 409 | //此处设置开发者获取到的方向信息,顺时针0-360 410 | .direction(bdLocation.getDirection()) 411 | //经度 412 | .latitude(bdLocation.getLatitude()) 413 | //纬度 414 | .longitude(bdLocation.getLongitude()) 415 | //构建 416 | .build(); 417 | 418 | //设置定位数据 419 | mBaiduMap.setMyLocationData(data); 420 | 421 | //是否是第一次定位 422 | if (isFirstLoc) { 423 | isFirstLoc = false; 424 | LatLng ll = new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude()); 425 | MapStatusUpdate msu = MapStatusUpdateFactory.newLatLngZoom(ll, 18); 426 | mBaiduMap.animateMapStatus(msu); 427 | } 428 | 429 | //获取坐标,待会用于POI信息点与定位的距离 430 | locationLatLng = new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude()); 431 | //获取城市,待会用于POISearch 432 | city = bdLocation.getCity(); 433 | 434 | //创建GeoCoder实例对象 435 | geoCoder = GeoCoder.newInstance(); 436 | //发起反地理编码请求(经纬度->地址信息) 437 | ReverseGeoCodeOption reverseGeoCodeOption = new ReverseGeoCodeOption(); 438 | //设置反地理编码位置坐标 439 | reverseGeoCodeOption.location(new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude())); 440 | geoCoder.reverseGeoCode(reverseGeoCodeOption); 441 | 442 | //设置查询结果监听者 443 | geoCoder.setOnGetGeoCodeResultListener(this); 444 | } 445 | 446 | //地理编码查询结果回调函数 447 | @Override 448 | public void onGetGeoCodeResult(GeoCodeResult geoCodeResult) { 449 | } 450 | 451 | //反地理编码查询结果回调函数 452 | @Override 453 | public void onGetReverseGeoCodeResult(ReverseGeoCodeResult reverseGeoCodeResult) { 454 | List poiInfos = reverseGeoCodeResult.getPoiList(); 455 | PoiAdapter poiAdapter = new PoiAdapter(MainActivity.this, poiInfos); 456 | poisLL.setAdapter(poiAdapter); 457 | } 458 | 459 | 460 | /** 461 | * 手势操作地图,设置地图状态等操作导致地图状态开始改变 462 | * 463 | * @param mapStatus 地图状态改变开始时的地图状态 464 | */ 465 | @Override 466 | public void onMapStatusChangeStart(MapStatus mapStatus) { 467 | } 468 | 469 | /** 470 | * 地图状态变化中 471 | * 472 | * @param mapStatus 当前地图状态 473 | */ 474 | @Override 475 | public void onMapStatusChange(MapStatus mapStatus) { 476 | } 477 | 478 | /** 479 | * 地图状态改变结束 480 | * 481 | * @param mapStatus 地图状态改变结束后的地图状态 482 | */ 483 | @Override 484 | public void onMapStatusChangeFinish(MapStatus mapStatus) { 485 | //地图操作的中心点 486 | LatLng cenpt = mapStatus.target; 487 | geoCoder.reverseGeoCode(new ReverseGeoCodeOption().location(cenpt)); 488 | } 489 | 490 | //回退键 491 | @Override 492 | public void onBackPressed() { 493 | finish(); 494 | } 495 | 496 | @Override 497 | protected void onResume() { 498 | super.onResume(); 499 | // activity 恢复时同时恢复地图控件 500 | mMapView.onResume(); 501 | } 502 | 503 | @Override 504 | protected void onPause() { 505 | super.onPause(); 506 | // activity 暂停时同时暂停地图控件 507 | mMapView.onPause(); 508 | } 509 | 510 | @Override 511 | protected void onDestroy() { 512 | super.onDestroy(); 513 | 514 | //退出时停止定位 515 | mLocClient.stop(); 516 | //退出时关闭定位图层 517 | mBaiduMap.setMyLocationEnabled(false); 518 | 519 | // activity 销毁时同时销毁地图控件 520 | mMapView.onDestroy(); 521 | 522 | //释放资源 523 | if (geoCoder != null) { 524 | geoCoder.destroy(); 525 | } 526 | 527 | mMapView = null; 528 | } 529 | } 530 | 531 | ``` 532 | 533 | 代码分段分析: 534 | 535 | ![放大地图](http://img.blog.csdn.net/20151012145427898) 536 | 537 | 这里我们放大了地图,zoom(18)【地图缩放级别 3~20】,接下来对我们的定位选项做一个简单的说明: 538 | 539 | ![定位选项](http://img.blog.csdn.net/20151012153822773) 540 | 541 | 当我们定位完了之后,我们就可以对定位好的数据进行处理了,简单说明一下我们的定位监听做了哪些事情: 542 | 543 | ![定位监听](http://img.blog.csdn.net/20151012160309478) 544 | 545 | 定位好了之后我们进行过反地理编码,下面说明一下反地理编码监听里面做了哪些事情: 546 | 547 | ![反地理编码监听](http://img.blog.csdn.net/20151012161733870) 548 | 549 | - ####PoiAdapter 550 | 551 | 这里会用到一张图 **baidumap_ico_poi_on.png** 大家右键另存为就行了: 552 | 553 | ![baidumap_ico_poi_on](http://img.blog.csdn.net/20151012172459488) 554 | 555 | 适配器视图 **locationpois.xml** : 556 | 557 | ``` 558 | 559 | 564 | 565 | 571 | 572 | 576 | 577 | 578 | 582 | 583 | 584 | ``` 585 | 布局简单说明: 586 | 587 | ![布局说明](http://img.blog.csdn.net/20151012165457802) 588 | 589 | 实现类 **PoiAdapter** : 590 | 591 | ``` 592 | public class PoiAdapter extends BaseAdapter { 593 | private Context context; 594 | private List pois; 595 | private LinearLayout linearLayout; 596 | 597 | 598 | PoiAdapter(Context context, List pois) { 599 | this.context = context; 600 | this.pois = pois; 601 | } 602 | 603 | @Override 604 | public int getCount() { 605 | return pois.size(); 606 | } 607 | 608 | @Override 609 | public Object getItem(int position) { 610 | return pois.get(position); 611 | } 612 | 613 | @Override 614 | public long getItemId(int position) { 615 | return position; 616 | } 617 | 618 | @Override 619 | public View getView(int position, View convertView, ViewGroup parent) { 620 | ViewHolder holder = null; 621 | if (convertView == null) { 622 | convertView = LayoutInflater.from(context).inflate(R.layout.locationpois_item, null); 623 | linearLayout = (LinearLayout) convertView.findViewById(R.id.locationpois_linearlayout); 624 | holder = new ViewHolder(convertView); 625 | convertView.setTag(holder); 626 | } else { 627 | holder = (ViewHolder) convertView.getTag(); 628 | } 629 | if (position == 0 && linearLayout.getChildCount() < 2) { 630 | ImageView imageView = new ImageView(context); 631 | ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(32, 32); 632 | imageView.setLayoutParams(params); 633 | imageView.setBackgroundColor(Color.TRANSPARENT); 634 | imageView.setImageResource(R.mipmap.baidumap_ico_poi_on); 635 | imageView.setScaleType(ImageView.ScaleType.FIT_XY); 636 | linearLayout.addView(imageView, 0, params); 637 | holder.locationpoi_name.setTextColor(Color.parseColor("#FF5722")); 638 | } 639 | PoiInfo poiInfo = pois.get(position); 640 | holder.locationpoi_name.setText(poiInfo.name); 641 | holder.locationpoi_address.setText(poiInfo.address); 642 | return convertView; 643 | } 644 | 645 | class ViewHolder { 646 | TextView locationpoi_name; 647 | TextView locationpoi_address; 648 | 649 | ViewHolder(View view) { 650 | locationpoi_name = (TextView) view.findViewById(R.id.locationpois_name); 651 | locationpoi_address = (TextView) view.findViewById(R.id.locationpois_address); 652 | } 653 | } 654 | } 655 | ``` 656 | 代码分段分析: 657 | 658 | ![poiAdapter具体实现](http://img.blog.csdn.net/20151012170709170) 659 | 660 | - ####地图状态变化---OnMapStatusChangeListener 661 | 662 | ![地图状态变化](http://img.blog.csdn.net/20151012171315757) 663 | 664 | 来看看我们现在运行是什么样子的: 665 | 666 | ![第一次运行](http://img.blog.csdn.net/20151012171713293) 667 | 668 | 大家移动一下地图试试。 669 | 670 | - ####第三步:添加定位图标 671 | 672 | 更改 **activity_main.xml** 布局文件: 673 | 674 | ``` 675 | 676 | 680 | 681 | 685 | 686 | 690 | 691 | 696 | 697 | 703 | 704 | 705 | 710 | 711 | 712 | 713 | ``` 714 | 715 | ![居中图标](http://img.blog.csdn.net/20151012173056316) 716 | 717 | 此次没有任何实现代码添加或者改动,运行看一下效果: 718 | 719 | ![第二次运行](http://img.blog.csdn.net/20151012173650964) 720 | 721 | 大家移动一下地图试试。 722 | 723 | - ####输入关键字显示相关地址列表 724 | 725 | 首先我们先更改 **activity_main.xml** : 726 | 727 | ``` 728 | 729 | 732 | 733 | 737 | 738 | 742 | 743 | 748 | 749 | 755 | 756 | 757 | 762 | 763 | 764 | 768 | 769 | 775 | 776 | 782 | 783 | 784 | 785 | 792 | 793 | 794 | 795 | 796 | ``` 797 | 798 | 代码说明: 799 | 800 | ![主布局](http://img.blog.csdn.net/20151013100505702) 801 | 802 | 接下来书写适配器的item布局 **poisearch_item.xml**: 803 | 804 | ``` 805 | 806 | 810 | 811 | 815 | 816 | 820 | 821 | 826 | 827 | 831 | 832 | 833 | 834 | ``` 835 | 836 | 代码说明: 837 | 838 | ![适配器说明](http://img.blog.csdn.net/20151013101804504) 839 | 840 | 最终更改我们的 **MainActivity** 里面的代码 **(请结合下面代码说明来看)** : 841 | 842 | ``` 843 | public class MainActivity extends AppCompatActivity implements BDLocationListener, OnGetGeoCoderResultListener, BaiduMap.OnMapStatusChangeListener, TextWatcher { 844 | 845 | private MapView mMapView; 846 | private BaiduMap mBaiduMap; 847 | private ListView poisLL; 848 | /** 849 | * 定位模式 850 | */ 851 | private MyLocationConfiguration.LocationMode mCurrentMode; 852 | /** 853 | * 定位端 854 | */ 855 | private LocationClient mLocClient; 856 | /** 857 | * 是否是第一次定位 858 | */ 859 | private boolean isFirstLoc = true; 860 | /** 861 | * 定位坐标 862 | */ 863 | private LatLng locationLatLng; 864 | /** 865 | * 定位城市 866 | */ 867 | private String city; 868 | /** 869 | * 反地理编码 870 | */ 871 | private GeoCoder geoCoder; 872 | /** 873 | * 界面上方布局 874 | */ 875 | private RelativeLayout topRL; 876 | /** 877 | * 搜索地址输入框 878 | */ 879 | private EditText searchAddress; 880 | /** 881 | * 搜索输入框对应的ListView 882 | */ 883 | private ListView searchPois; 884 | 885 | @Override 886 | protected void onCreate(Bundle savedInstanceState) { 887 | super.onCreate(savedInstanceState); 888 | //在使用SDK各组件之前初始化context信息,传入ApplicationContext 889 | //注意该方法要再setContentView方法之前实现 890 | SDKInitializer.initialize(getApplicationContext()); 891 | //requestWindowFeature(Window.FEATURE_NO_TITLE); 892 | setContentView(R.layout.activity_main); 893 | initView(); 894 | } 895 | 896 | private void initView() { 897 | mMapView = (MapView) findViewById(R.id.main_bdmap); 898 | mBaiduMap = mMapView.getMap(); 899 | 900 | poisLL = (ListView) findViewById(R.id.main_pois); 901 | 902 | topRL = (RelativeLayout) findViewById(R.id.main_top_RL); 903 | 904 | searchAddress = (EditText) findViewById(R.id.main_search_address); 905 | 906 | searchPois = (ListView) findViewById(R.id.main_search_pois); 907 | 908 | //定义地图状态 909 | MapStatus mMapStatus = new MapStatus.Builder().zoom(18).build(); 910 | MapStatusUpdate mMapStatusUpdate = MapStatusUpdateFactory.newMapStatus(mMapStatus); 911 | //改变地图状态 912 | mBaiduMap.setMapStatus(mMapStatusUpdate); 913 | 914 | //地图状态改变相关监听 915 | mBaiduMap.setOnMapStatusChangeListener(this); 916 | 917 | //开启定位图层 918 | mBaiduMap.setMyLocationEnabled(true); 919 | 920 | //定位图层显示方式 921 | mCurrentMode = MyLocationConfiguration.LocationMode.NORMAL; 922 | 923 | /** 924 | * 设置定位图层配置信息,只有先允许定位图层后设置定位图层配置信息才会生效 925 | * customMarker用户自定义定位图标 926 | * enableDirection是否允许显示方向信息 927 | * locationMode定位图层显示方式 928 | */ 929 | mBaiduMap.setMyLocationConfigeration(new MyLocationConfiguration(mCurrentMode, true, null)); 930 | 931 | //初始化定位 932 | mLocClient = new LocationClient(this); 933 | //注册定位监听 934 | mLocClient.registerLocationListener(this); 935 | 936 | //定位选项 937 | LocationClientOption option = new LocationClientOption(); 938 | /** 939 | * coorType - 取值有3个: 940 | * 返回国测局经纬度坐标系:gcj02 941 | * 返回百度墨卡托坐标系 :bd09 942 | * 返回百度经纬度坐标系 :bd09ll 943 | */ 944 | option.setCoorType("bd09ll"); 945 | //设置是否需要地址信息,默认为无地址 946 | option.setIsNeedAddress(true); 947 | //设置是否需要返回位置语义化信息,可以在BDLocation.getLocationDescribe()中得到数据,ex:"在天安门附近", 可以用作地址信息的补充 948 | option.setIsNeedLocationDescribe(true); 949 | //设置是否需要返回位置POI信息,可以在BDLocation.getPoiList()中得到数据 950 | option.setIsNeedLocationPoiList(true); 951 | /** 952 | * 设置定位模式 953 | * Battery_Saving 954 | * 低功耗模式 955 | * Device_Sensors 956 | * 仅设备(Gps)模式 957 | * Hight_Accuracy 958 | * 高精度模式 959 | */ 960 | option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy); 961 | //设置是否打开gps进行定位 962 | option.setOpenGps(true); 963 | //设置扫描间隔,单位是毫秒 当<1000(1s)时,定时定位无效 964 | option.setScanSpan(1000); 965 | 966 | //设置 LocationClientOption 967 | mLocClient.setLocOption(option); 968 | 969 | //开始定位 970 | mLocClient.start(); 971 | 972 | } 973 | 974 | /** 975 | * 定位监听 976 | * 977 | * @param bdLocation 978 | */ 979 | @Override 980 | public void onReceiveLocation(BDLocation bdLocation) { 981 | 982 | //如果bdLocation为空或mapView销毁后不再处理新数据接收的位置 983 | if (bdLocation == null || mBaiduMap == null) { 984 | return; 985 | } 986 | 987 | //定位数据 988 | MyLocationData data = new MyLocationData.Builder() 989 | //定位精度bdLocation.getRadius() 990 | .accuracy(bdLocation.getRadius()) 991 | //此处设置开发者获取到的方向信息,顺时针0-360 992 | .direction(bdLocation.getDirection()) 993 | //经度 994 | .latitude(bdLocation.getLatitude()) 995 | //纬度 996 | .longitude(bdLocation.getLongitude()) 997 | //构建 998 | .build(); 999 | 1000 | //设置定位数据 1001 | mBaiduMap.setMyLocationData(data); 1002 | 1003 | //是否是第一次定位 1004 | if (isFirstLoc) { 1005 | isFirstLoc = false; 1006 | LatLng ll = new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude()); 1007 | MapStatusUpdate msu = MapStatusUpdateFactory.newLatLngZoom(ll, 18); 1008 | mBaiduMap.animateMapStatus(msu); 1009 | } 1010 | 1011 | //获取坐标,待会用于POI信息点与定位的距离 1012 | locationLatLng = new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude()); 1013 | //获取城市,待会用于POISearch 1014 | city = bdLocation.getCity(); 1015 | 1016 | //文本输入框改变监听,必须在定位完成之后 1017 | searchAddress.addTextChangedListener(this); 1018 | 1019 | //创建GeoCoder实例对象 1020 | geoCoder = GeoCoder.newInstance(); 1021 | //发起反地理编码请求(经纬度->地址信息) 1022 | ReverseGeoCodeOption reverseGeoCodeOption = new ReverseGeoCodeOption(); 1023 | //设置反地理编码位置坐标 1024 | reverseGeoCodeOption.location(new LatLng(bdLocation.getLatitude(), bdLocation.getLongitude())); 1025 | geoCoder.reverseGeoCode(reverseGeoCodeOption); 1026 | 1027 | //设置查询结果监听者 1028 | geoCoder.setOnGetGeoCodeResultListener(this); 1029 | } 1030 | 1031 | //地理编码查询结果回调函数 1032 | @Override 1033 | public void onGetGeoCodeResult(GeoCodeResult geoCodeResult) { 1034 | } 1035 | 1036 | //反地理编码查询结果回调函数 1037 | @Override 1038 | public void onGetReverseGeoCodeResult(ReverseGeoCodeResult reverseGeoCodeResult) { 1039 | List poiInfos = reverseGeoCodeResult.getPoiList(); 1040 | PoiAdapter poiAdapter = new PoiAdapter(MainActivity.this, poiInfos); 1041 | poisLL.setAdapter(poiAdapter); 1042 | } 1043 | 1044 | 1045 | /** 1046 | * 手势操作地图,设置地图状态等操作导致地图状态开始改变 1047 | * 1048 | * @param mapStatus 地图状态改变开始时的地图状态 1049 | */ 1050 | @Override 1051 | public void onMapStatusChangeStart(MapStatus mapStatus) { 1052 | } 1053 | 1054 | /** 1055 | * 地图状态变化中 1056 | * 1057 | * @param mapStatus 当前地图状态 1058 | */ 1059 | @Override 1060 | public void onMapStatusChange(MapStatus mapStatus) { 1061 | } 1062 | 1063 | /** 1064 | * 地图状态改变结束 1065 | * 1066 | * @param mapStatus 地图状态改变结束后的地图状态 1067 | */ 1068 | @Override 1069 | public void onMapStatusChangeFinish(MapStatus mapStatus) { 1070 | //地图操作的中心点 1071 | LatLng cenpt = mapStatus.target; 1072 | geoCoder.reverseGeoCode(new ReverseGeoCodeOption().location(cenpt)); 1073 | } 1074 | 1075 | /** 1076 | * 输入框监听---输入之前 1077 | * 1078 | * @param s 字符序列 1079 | * @param start 开始 1080 | * @param count 总计 1081 | * @param after 之后 1082 | */ 1083 | @Override 1084 | public void beforeTextChanged(CharSequence s, int start, int count, int after) { 1085 | } 1086 | 1087 | /** 1088 | * 输入框监听---正在输入 1089 | * 1090 | * @param s 字符序列 1091 | * @param start 开始 1092 | * @param before 之前 1093 | * @param count 总计 1094 | */ 1095 | @Override 1096 | public void onTextChanged(CharSequence s, int start, int before, int count) { 1097 | } 1098 | 1099 | /** 1100 | * 输入框监听---输入完毕 1101 | * 1102 | * @param s 1103 | */ 1104 | @Override 1105 | public void afterTextChanged(Editable s) { 1106 | if (s.length() == 0 || "".equals(s.toString())) { 1107 | searchPois.setVisibility(View.GONE); 1108 | } else { 1109 | //创建PoiSearch实例 1110 | PoiSearch poiSearch = PoiSearch.newInstance(); 1111 | //城市内检索 1112 | PoiCitySearchOption poiCitySearchOption = new PoiCitySearchOption(); 1113 | //关键字 1114 | poiCitySearchOption.keyword(s.toString()); 1115 | //城市 1116 | poiCitySearchOption.city(city); 1117 | //设置每页容量,默认为每页10条 1118 | poiCitySearchOption.pageCapacity(10); 1119 | //分页编号 1120 | poiCitySearchOption.pageNum(1); 1121 | poiSearch.searchInCity(poiCitySearchOption); 1122 | //设置poi检索监听者 1123 | poiSearch.setOnGetPoiSearchResultListener(new OnGetPoiSearchResultListener() { 1124 | //poi 查询结果回调 1125 | @Override 1126 | public void onGetPoiResult(PoiResult poiResult) { 1127 | List poiInfos = poiResult.getAllPoi(); 1128 | PoiSearchAdapter poiSearchAdapter = new PoiSearchAdapter(MainActivity.this, poiInfos, locationLatLng); 1129 | searchPois.setVisibility(View.VISIBLE); 1130 | searchPois.setAdapter(poiSearchAdapter); 1131 | } 1132 | 1133 | //poi 详情查询结果回调 1134 | @Override 1135 | public void onGetPoiDetailResult(PoiDetailResult poiDetailResult) { 1136 | } 1137 | }); 1138 | } 1139 | } 1140 | 1141 | 1142 | //回退键 1143 | @Override 1144 | public void onBackPressed() { 1145 | finish(); 1146 | } 1147 | 1148 | @Override 1149 | protected void onResume() { 1150 | super.onResume(); 1151 | // activity 恢复时同时恢复地图控件 1152 | mMapView.onResume(); 1153 | } 1154 | 1155 | @Override 1156 | protected void onPause() { 1157 | super.onPause(); 1158 | // activity 暂停时同时暂停地图控件 1159 | mMapView.onPause(); 1160 | } 1161 | 1162 | @Override 1163 | protected void onDestroy() { 1164 | super.onDestroy(); 1165 | 1166 | //退出时停止定位 1167 | mLocClient.stop(); 1168 | //退出时关闭定位图层 1169 | mBaiduMap.setMyLocationEnabled(false); 1170 | 1171 | // activity 销毁时同时销毁地图控件 1172 | mMapView.onDestroy(); 1173 | 1174 | //释放资源 1175 | if (geoCoder != null) { 1176 | geoCoder.destroy(); 1177 | } 1178 | 1179 | mMapView = null; 1180 | } 1181 | 1182 | } 1183 | ``` 1184 | 代码说明: 1185 | 1186 | ![最终说明](http://img.blog.csdn.net/20151013104225358) 1187 | 1188 | 最终运行效果与文章开篇展示效果一样,这里呢就不再重复贴图了。 1189 | 1190 | - ####GitHub 1191 | 1192 | 最终项目GitHub地址:https://github.com/scp504677840/MoveMapLocation.git 1193 | 1194 | -------------------------------------------------------------------------------- /说明.md: -------------------------------------------------------------------------------- 1 | # 百学须先立志---学前须知: 2 | 3 | 我们经常在各大主流APP上要求被写上地址,如百度外卖、爱鲜蜂收货地址等等;其中他们大多数是可以让我们在地图上移动选址。就如下面这段GIF演示的一样: 4 | 5 | ![Image](https://github.com/scp504677840/MoveMapLocation/blob/master/MoveLocation.gif) 6 | 7 | # 尽信书,不如无书---能学到什么? 8 | 9 | 1、地图状态MapStatus类及监听setOnMapStatusChangeListener 10 | 2、定位LocationClient类 11 | 3、反地理编码GeoCoder类 12 | --------------------------------------------------------------------------------