Giter VIP home page Giter VIP logo

mapdrawingtools's Introduction

simple library for manually Drawing element of Map and return them to main Application

Build Status Android Arsenal

MapDrawingTools is an android library to Drawing manually polygon, polyline and points in the Google Map and return coordinates from library to your App. this library useful for application that pick multiple point or drawing border of land to get data from users.

Project Setup and Dependencies

  • JDK 8
  • Android SDK Build tools 28.0.3
  • Supports API Level +17
  • AppCompat & Cardview libraries androidx 1.0.0
  • Google Play Services Maps 16.0.0

Highlights

  • Add point of Polygon, Polyline and Markers with Tab on the Map
  • Relocation all Markers and draw them with dragging the Markers.
  • Supports calculating area of polygon & length of polyline
  • Supports Undo point inserted to the Map

Preview

Demo

Youtube

MapDrawingTools

You can download the latest demo APK from here: https://github.com/bkhezry/MapDrawingTools/blob/master/assets/DemoMapDrawingTools.apk

Screenshots

Setup

1. Provide the gradle dependency

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Add the dependency:

dependencies {
	implementation 'com.github.bkhezry:MapDrawingTools:1.1.3'
}

2. Add your code

add MapsActivity to yout app AndroidManifest file

<activity android:name="com.github.bkhezry.mapdrawingtools.ui.MapsActivity" />

set theme of this activity to custom Theme.AppCompat that contain two items.

<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>

in your app add this code:

DrawingOption.DrawingType currentDrawingType = DrawingOption.DrawingType.POLYGON;
Intent intent =
	new DrawingOptionBuilder()
		.withLocation(35.744502, 51.368966)
		.withMapZoom(14)
		.withFillColor(Color.argb(60, 0, 0, 255))
		.withStrokeColor(Color.argb(100, 255, 0, 0))
		.withStrokeWidth(3)
		.withRequestGPSEnabling(false)
		.withDrawingType(currentDrawingType)
		.build(getApplicationContext());
startActivityForResult(intent, REQUEST_CODE);

DrawingOption attributes

Name Type Default Description
locationLatitude Double @NoneNullable latitude of center map
locationLongitude Double @NoneNullable longitude of center map
zoom float 14 zoom of map
fillColor int Color.argb(0, 0, 0, 0) only use in polygon for fill color
strokeColor int Color.argb(255, 0, 0, 0) strock color of polygon and polyline
strokeWidth int 10 strock width of polygon and polyline
enableSatelliteView boolean true show switch between satellite or default map icon
requestGPSEnabling boolean false request for turn on GPS in start of activity
enableCalculateLayout boolean true show layout of calculated area and length top of MapView
drawingType DrawingType POLYGON type of drawing

value of DrawingType: POLYGON, POLYLINE, POINT

Get Data

after drawing element and click on Done icon, data will be return to your activity

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK && requestCode == REQUEST_CODE && data != null) {
	DataModel dataModel =
                    data.getExtras().getParcelable(MapsActivity.POINTS);
	LatLng[] points=dataModel.getPoints();
  }
}

Developed By

Credit

spacial thanks Leku

License

Copyright 2017 Behrouz Khezry

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.

mapdrawingtools's People

Contributors

bkhezry avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

mapdrawingtools's Issues

Translation

How do I translate for my language?
Especially the polygon screen, the words 'Length' and 'Area' appear above.

App crashes when lunching MapsActivity

I added the MapsActivity in the manifest, defined the style as recommended
false
true

Here is my activity class:

public class MyMap extends AppCompatActivity
{
private static final int REQUEST_CODE = 1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_another_map);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK && requestCode == REQUEST_CODE && data != null) {
        DataModel dataModel =
                data.getExtras().getParcelable(MapsActivity.POINTS);
        LatLng[] points = dataModel.getPoints();
    }
}

public void TryMe(View view) {
    DrawingOption.DrawingType currentDrawingType = DrawingOption.DrawingType.POLYGON;
    Intent intent =
            new DrawingOptionBuilder()
                    .withLocation(35.744502, 51.368966)
                    .withMapZoom(14)
                    .withFillColor(Color.argb(60, 0, 0, 255))
                    .withStrokeColor(Color.argb(100, 255, 0, 0))
                    .withStrokeWidth(3)
                    .withRequestGPSEnabling(false)
                    .withDrawingType(currentDrawingType)
                    .build(getApplicationContext());
    startActivityForResult(intent, REQUEST_CODE);
}

}

When I click the button in my layout file to open your MapsActivity I get a crash......Here is what I have in my logcat:
java.lang.RuntimeException: Unable to start activity
Caused by: java.lang.NullPointerException at com.github.bkhezry.mapdrawingtools.ui.MapsActivity.setUpFABs(MapsActivity.java:106)
at com.github.bkhezry.mapdrawingtools.ui.MapsActivity.onCreate(MapsActivity.java:96)

withLocation doesn't work

It still shows the GPS location instead of withLocation(specific location).

nexus 6
android 6.0

compile 'com.github.bkhezry:MapDrawingTools:1.1.0'

minSdkVersion 21
        targetSdkVersion 27

RxJava library functions import issue

I have downloaded project. It gives me Rx java import issues all over the project. Do I need to implement rx java library in project?
below are few import issues listed
error: package rx.functions does not exist
import rx.functions.Action1;

import rx.Observable;
import rx.Subscription;
import rx.functions.Action1;
import rx.subscriptions.CompositeSubscription;

etc.

I have implemented "implementation 'io.reactivex.rxjava2:rxjava:2.2.7'" . even though does not works. Please suggest what to do.

Adding support for free drawing

Free drawing can be supported with this library, we just need to handle onDrag event. There are many projects doing that. It would make this a complete solution for drawing over google maps.

Polygon Clicking

Hi Sir,

How can I manage the polygon clicking when I click on the polygon it's going to google maps but when I click it needs to display the title of the polygon in the toast

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.