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
<?php | |
$address = 'avenida+gustavo+paiva,maceio,alagoas,brasil'; | |
$geocode = file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$address.'&sensor=false'); | |
$output= json_decode($geocode); | |
$lat = $output->results[0]->geometry->location->lat; | |
$long = $output->results[0]->geometry->location->lng; |
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
-> Vantagens de uso da nuvem: | |
- Trocar investimento em ativos por custos operacionais. | |
Custos tende a ser mais aderentes aos negócios. | |
- Benefício de escala massivo. | |
Quanto maior a estrutura, maior uso de uma estrutura robusta, mais barato deve se tornar o módulo. | |
- Parar de estimar/chutar a capacidade do data center. | |
Na nuvem, pela elasticidade, poderá escalar conforme a necessidade. |