Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

481
Views
no se puede obtener la propiedad 'getRegularPolygon' de indefinido o nulo

Utilizo invocar script en C# para llamar a SetCoords y parece que todo funciona bien hasta que se encuentra con la línea "getRegularPolygon". No puedo encontrar ninguna documentación para el método, pero obtuve la segunda mitad de la función SetCoords de esto: https://docs.microsoft.com/en-us/bingmaps/v8-web-control/map-control-concepts /spatial-math-module-examples/geolocation-accuracy-circle-example Otros lugares en los que he buscado respuestas dicen algo sobre "getelementbyid", pero eso no parece aplicarse aquí.

 <!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8" http-equiv="X-UA-Compatible" content="IE=edge" /> <script type='text/javascript' src='http://www.bing.com/api/maps/mapcontrol?callback=GetMap&key={mykey}' async defer></script> <script type='text/javascript' async defer> var map, infobox, pushpin, radius; var centerlattitude = 0.0; var centerlongitude = 0.0; function GetMap() { var center = new Microsoft.Maps.Location(centerlattitude, centerlongitude); map = new Microsoft.Maps.Map('#myMap', { center: center, zoom: 20 }); pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location(centerlattitude, centerlongitude + 0.0005), { draggable: true }); map.entities.push(pushpin); Microsoft.Maps.Events.addHandler(pushpin, 'changed', getNewCenter); } function SetCoords(lat, long, rad) { centerlattitude = lat; centerlongitude = long; radius = rad; GetMap(); var path = Microsoft.Maps.SpatialMath.getRegularPolygon(center, radius*1000, 8, Microsoft.Maps.SpatialMath.Meters); var poly = new Microsoft.Maps.Polygon(path); map.entities.push(poly); } </body> </html>
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Debe cargar la biblioteca de matemáticas espaciales. Bing Maps está modularizado para ayudar a reducir el tamaño total de las aplicaciones para que los desarrolladores solo carguen las partes que necesitan para garantizar una carga inicial rápida de la aplicación. Tenga en cuenta que la carga de módulos es asíncrona, por lo que debe ejecutar su código que accede al módulo, una vez que haya terminado de cargarse. Aquí hay un ejemplo:

 //Load the spatial math module Microsoft.Maps.loadModule("Microsoft.Maps.SpatialMath", function () { var path = Microsoft.Maps.SpatialMath.getRegularPolygon(center, radius*1000, 8, Microsoft.Maps.SpatialMath.Meters); var poly = new Microsoft.Maps.Polygon(path); map.entities.push(poly); });
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!