14 questions
0
votes
0
answers
39
views
Angular Google map doesn't show markers on Android
I use @angular/google-maps for my mobile application. It may sound wild why I don't use capacitor/google-map, first I use this, but I needed to make a custom cluster icon, which is not provided by ...
1
vote
0
answers
511
views
Converting from agm/core to @angular/google-maps missing Maploader api
In my angular project I am trying to remove @agm/core and using @angular/google-maps instead. It is going good so far. In @agm/core we had a MapsAPILoader and what I was able to do was this
this....
0
votes
1
answer
383
views
@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:
<div class="map-container">
<...
0
votes
1
answer
335
views
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,
...
0
votes
1
answer
1k
views
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 ...
0
votes
1
answer
80
views
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 ...
0
votes
1
answer
790
views
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<string, ...
1
vote
0
answers
1k
views
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 -
[email protected]
[email protected]
agm/[email protected]
I'm getting the an error in terminal on running ng serve, ...
0
votes
1
answer
1k
views
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
<agm-map
style="height: 700px"
[latitude]=&...
0
votes
1
answer
240
views
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 ...
0
votes
1
answer
612
views
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 ...
0
votes
1
answer
118
views
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 ...
0
votes
0
answers
405
views
Infinite loop in angular
<ng-container *ngFor="let conflictRule of conflictRulesMap1 | keyvalue">
<div align="left" class="config-header-name">
<div ...
0
votes
1
answer
372
views
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 ...