Questions tagged [angular-maps]

12 questions
1
vote
0 answers

What can be the reason for this error in zoom control property of angular google maps?

I'm trying to build a simple google map location marker with a radius. I'm using - angular@11.0.4 angular-cli@11.0.4 agm/core@3.0.0 I'm getting the an error in terminal on running ng serve, regarding zoomControl property & a method I defined in…
0
votes
1 answer

@angular/google-maps 13.3.9 - Make marker have round shape and image

I need to add a custom marker into my map. All I want is for it to have a circle shape and an image inside, but I can't get it to work. Code:
MIPB
  • 1,770
  • 2
  • 12
  • 21
0
votes
1 answer

How to push response of an post API into an array using pipe and map operator in angular . It shows [object Object]

I am working on a project where in my component.ts file I am calling a post API which is giving me a response in the format email: string, employeeAddress: string, employeeId: string, employeeLevel: string I am not sure whether my approach is…
0
votes
1 answer

agm-map & agm-marker drag

This is the code for adding my agm-map for Indonesia. Right now center is at Jakarta as per latitude and longitude and whole map shows in map section. What I want is to allow marker movement to only Indonesia country. What is the way achieve, please…
Bimlendu Kumar
  • 226
  • 2
  • 17
0
votes
1 answer

Object Property named with ? not working inside map in Angular

I am new to Angular, the job.job_company_companyName, the job.job_company.location and the job.jobTitle, both of them work/can be searched on based on the filter: But when I added the object of Jobs with question mark (?) for example:…
0
votes
1 answer

Angular - Add form values from a FormBuilder Form.group into a Map data structure

I have a FormBuilder form group called AddStatusBoxForm: AddStatusBoxForm = this.Form.group({ name: [''] }); I then have a Map data structure which I think would have a type of Map: statusBoxValues = new Map
0
votes
1 answer

Using Agm mps and i want to get the lat lng on map click in angular 10

Here is my code but it is not working. when I click on the map it displays error: Cannot read property 'lat' of undefined
Saad Arshad
  • 38
  • 1
  • 5
0
votes
1 answer

Java / Angular: keyvalue pipe doesn't show data sent from backend

I'am trying to set up an app in which the backend receives data from an api and proceeds it to the frontend. The api is https://www.travel-advisory.info/api Long story short: For some reason, I seem to receive the data in the frontend, but I cannot…
tom-jakob
  • 3
  • 3
0
votes
1 answer

How to get Latitude and Longitude from google maps latLng Object

I integrated angular google maps with my application to get the latitude and longitude of a certain place by dragging a marker.I successfully returned an object which encapsulates the latitude and longitude fields but I am not knowing how to access…
Hasan Kanaan
  • 99
  • 1
  • 11
0
votes
1 answer

remove clustering onclick bingmaps

I am Using Bingmaps angular-maps(Xmap) in my project and i am using clustering layer as in below Screenshot. And on Click of a cluster the parent cluster in getting clustered again into smaller Clusters like below screenshot. But what i want to…
Thilak raj
  • 57
  • 7
0
votes
0 answers
0
votes
1 answer

angular-maps (X-map) multilayer markers dynamic update

Maps Bing-map(x-map) for multilayer representation of data on the map. The data for markers will be updated by a REST API call to the backend. But when I update the data to my markers, the markers are not changing on the map. How can I resolve…