Категории берутся из базы

This commit is contained in:
Krivchikov Dmitry 2014-04-07 14:53:42 +04:00
parent af37e4f4f9
commit 56cd176788
1 changed files with 16 additions and 7 deletions

View File

@ -1,10 +1,10 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
* Let's GO!
*/
ymaps.ready(init);
var myMap;
var categories;
function init() {
myMap = new ymaps.Map("map", {
@ -18,6 +18,7 @@ function init() {
myMap.controls.add('smallZoomControl');
myMap.controls.add('scaleLine');
initCategories()
getPoints();
myMap.events.add('click', function (e) {
@ -35,8 +36,7 @@ function init() {
'<textarea id="description" name="description"></textarea></p>' +
'<p>Тип:<br/>' +
'<select id="categoryId" name="categoryId">' +
'<option value="1">Парки и сады</option>' +
'<option value="2">Замки и усадьбы</option>' +
categories +
'</select>' +
'<p>Источник:<br/>' +
'<input type="text" id="source" name="source" /></p>' +
@ -78,7 +78,16 @@ function getPoints()
return true;
}
function addNewPoint()
function initCategories()
{
console.log($('#name').val());
$.ajax({
url: "/json/categories/",
success: function(data){
for(var k in data) {
categories = categories + '<option value="'+data[k]['id']+'">'+data[k]['name']+'</option>';
}
}
});
return true;
}