Enviornment : Homestead with 2 gigs of RAM
Model Name: MacBook Pro
Model Identifier: MacBookPro9,2
Processor Name: Intel Core i5
Processor Speed: 2.5 GHz
Number of Processors: 1
Total Number of Cores: 2
L2 Cache (per Core): 256 KB
L3 Cache: 3 MB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getGoogleDirection($origin, $destination, $addDecodedPolyline = false){ | |
| $googleRoutingURL = "http://maps.googleapis.com/maps/api/directions/json?"; | |
| $data = [ | |
| 'origin' => $origin, | |
| 'destination' => $destination, | |
| 'language' => 'fa', | |
| 'alternatives' => 'true' | |
| ]; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.animation.ObjectAnimator; | |
| import android.animation.TypeEvaluator; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.util.Log; | |
| import android.util.Property; | |
| import android.widget.TextView; | |
| /** |