Tuesday, September 3, 2019

Link Ke Koordinat

Link Ke Koordinat

XML

<EditText
            android:background="#dddddd"
            android:id="@+id/txttelepon"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#000000" />
       
           <!--  Email Label -->
         
            <TextView
            android:id="@+id/tkoor"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Koordinat"
            android:textColor="#000000"
            android:textSize="20sp"
            android:textStyle="bold"/>

JAVA

txtkoor= (TextView) findViewById(R.id.tkoor);
txtkoor.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
   Intent intent = new Intent(android.content.Intent.ACTION_VIEW,              Uri.parse("https://maps.google.com/?="+txtlatitude.getText().toString()));                         
   startActivity(intent);
}});

No comments:

Post a Comment

Mengganti Icon Marker Di Maps

                                            Creating an icon https://leafletjs.com/examples.html var greenIcon = ...