AndreaTU

Untitled

Feb 4th, 2020
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //app.component.ts
  2. import { HttpClient } from '@angular/common/http';
  3. ...
  4.  
  5. export class AppComponent {
  6.  
  7. constructor(private http: HttpClient){}
  8.  
  9. useApi(){
  10. this.http.get(`https://maps.googleapis.com/maps/api/place/textsearch/json?query=museo%ara$pacis&key=[MY-KEY]`)
  11. .subscribe(res => console.log(res))
  12. }
Add Comment
Please, Sign In to add comment